Add new container file for eol-checker so we do not use daily-tests #79
Workflow file for this run
This file contains hidden or 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
| --- | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| name: Run Tox tests on daily-tests | |
| jobs: | |
| tox_test: | |
| strategy: | |
| matrix: | |
| tox_env: [py311, py312, py313, py314] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: fedora-python/tox-github-action@main | |
| with: | |
| tox_env: ${{ matrix.tox_env }} | |
| workdir: "daily-tests/" | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| flags: daily-tests-unit | |
| files: daily-tests/coverage.xml | |
| fail_ci_if_error: false |