style: Fix black #52
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Tests with Docker | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
plone: ["5.2.9"] | |
steps: | |
- uses: actions/checkout@v2 | |
name: Testing on Plone ${{ matrix.plone }} | |
id: setup | |
with: | |
plone-version: ${{ matrix.plone }} | |
- name: pyflakes | |
run: | | |
docker run -i --rm -v $(pwd)/eea:/code eeacms/pyflakes | |
- name: zptlint | |
run: | | |
docker run -i --rm -v $(pwd)/eea:/code eeacms/zptlint | |
- name: i18n | |
run: | | |
docker run -i --rm -v $(pwd)/eea:/code eeacms/i18ndude | |
- name: tests | |
run: | | |
docker run -i --rm -v $(pwd):/app/${{ github.event.repository.name }} -e DEVELOP="/app/${{ github.event.repository.name }}" -e ADDONS="/app/${{ github.event.repository.name }}[test]" plone/plone-backend:${{ matrix.plone }} bin/zope-testrunner --auto-color --auto-progress --test-path /app/${{ github.event.repository.name }} |