-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
run tests on all supported python versions, add codecov badge, python…
… versions badge
- Loading branch information
Showing
3 changed files
with
66 additions
and
39 deletions.
There are no files selected for viewing
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: test | ||
|
||
on: | ||
push: | ||
branches: # on all branches except `typos` | ||
- '**' | ||
- '!typos' | ||
paths-ignore: | ||
- 'docs/**' | ||
- 'notebooks/**' | ||
- 'paper/**' | ||
- '.git*' | ||
- 'README.md' | ||
pull_request: | ||
branches: | ||
- '**' | ||
schedule: # Every Monday at 07:00 UTC, 00:00 PT | ||
- cron: '0 7 * * 1' | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
python-version: [ "3.9", "3.10" ] | ||
os: [ubuntu-latest] | ||
fail-fast: false | ||
|
||
name: Python ${{ matrix.python-version }} on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@master | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install . | ||
- name: Test and generate coverage report | ||
run: | | ||
pip install pytest | ||
pip install pytest-cov | ||
pytest --cov=./ --cov-report=xml | ||
- uses: codecov/codecov-action@v4 | ||
with: | ||
files: ./coverage.xml # optional | ||
name: codecov-umbrella # optional | ||
token: ${{ secrets.CODECOV_TOKEN }} # required | ||
|
||
- name: Notify on failure | ||
if: failure() # This step will only run if any previous step fails | ||
run: | | ||
echo "Build or tests failed. Please check the logs." |
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