Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: try v1 #202

Closed
wants to merge 16 commits into from
25 changes: 16 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
repeat: [0, 1, 2, 3, 4, 5, 6, 7]
repeat2: [0, 1, 2, 3, 4, 5, 6, 7]
repeat3: [0, 1, 2, 3]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -14,17 +19,19 @@ jobs:
python-version: '3.10'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run ATS
uses: codecov/codecov-ats@v0
env:
CODECOV_STATIC_TOKEN: ${{ secrets.CODECOV_STATIC_TOKEN }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Run tests and collect coverage
run: pytest --cov app ${{ env.CODECOV_ATS_TESTS }}
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v1
with:
flags: smart-tests
fail_ci_if_error: true
verbose: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
codecov_curl_args: --retry-max-time 10








Loading