-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5b656d5
commit 2a2aa18
Showing
4 changed files
with
158 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Workflow for Codecov | ||
on: [push, pull_request] | ||
jobs: | ||
run: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Python 3.11 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.11' | ||
- name: Install dependencies | ||
run: pip install -r requirements-dev.lock | ||
- name: Run tests and collect coverage | ||
run: pytest --cov ${{ env.CODECOV_ATS_TESTS }} | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v4 | ||
with: | ||
verbose: true | ||
env: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
cfgv==3.4.0 ; python_version >= "3.11" and python_version < "4.0" | ||
colorama==0.4.6 ; python_version >= "3.11" and python_version < "4.0" and sys_platform == "win32" | ||
coverage[toml]==7.6.0 ; python_version >= "3.11" and python_version < "4.0" | ||
distlib==0.3.8 ; python_version >= "3.11" and python_version < "4.0" | ||
filelock==3.15.4 ; python_version >= "3.11" and python_version < "4.0" | ||
identify==2.5.36 ; python_version >= "3.11" and python_version < "4.0" | ||
iniconfig==2.0.0 ; python_version >= "3.11" and python_version < "4.0" | ||
mypy-extensions==1.0.0 ; python_version >= "3.11" and python_version < "4.0" | ||
mypy==1.10.1 ; python_version >= "3.11" and python_version < "4.0" | ||
nodeenv==1.9.1 ; python_version >= "3.11" and python_version < "4.0" | ||
packaging==24.1 ; python_version >= "3.11" and python_version < "4.0" | ||
platformdirs==4.2.2 ; python_version >= "3.11" and python_version < "4.0" | ||
pluggy==1.5.0 ; python_version >= "3.11" and python_version < "4.0" | ||
pre-commit==3.7.1 ; python_version >= "3.11" and python_version < "4.0" | ||
pytest-asyncio==0.23.7 ; python_version >= "3.11" and python_version < "4.0" | ||
pytest-cov==5.0.0 ; python_version >= "3.11" and python_version < "4.0" | ||
pytest==8.2.2 ; python_version >= "3.11" and python_version < "4.0" | ||
pyyaml==6.0.1 ; python_version >= "3.11" and python_version < "4.0" | ||
ruff==0.5.0 ; python_version >= "3.11" and python_version < "4.0" | ||
typing-extensions==4.12.2 ; python_version >= "3.11" and python_version < "4.0" | ||
virtualenv==20.26.3 ; python_version >= "3.11" and python_version < "4.0" |