name: pytest on: push: branches: - master pull_request: schedule: - cron: '0 8 * * *' jobs: test: name: 'Python ${{ matrix.python-version }} on ${{ matrix.os }}' runs-on: ${{ matrix.os }} env: PYTHONUNBUFFERED: 1 strategy: matrix: # TODO: "3.10" https://github.com/jedie/python-creole/issues/66 python-version: ["3.9", "3.8", "3.7"] # TODO: Test on windows-latest, too? os: [ubuntu-latest, macOS-latest] steps: - uses: actions/checkout@v2 with: fetch-depth: 0 - name: 'fetch main' run: | git fetch origin main - name: 'Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}' uses: actions/setup-python@v2 with: python-version: '${{ matrix.python-version }}' - uses: actions/cache@v2 with: path: ~/.cache/ key: dot-cache-files - name: 'Install package' run: | pip3 install poetry make install - name: 'List installed packages' run: | poetry run pip freeze - name: 'Run tests with Python v${{ matrix.python-version }} on ${{ matrix.os }}' run: | make pytest - name: 'Upload coverage report' uses: codecov/codecov-action@v2 with: fail_ci_if_error: false verbose: true