CLN/ENH: Rename and refactor datapipes, add datasets; fix 574 724 754… #344
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
name: Linux | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
ci: | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [3.9, "3.10", 3.11] | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: excitedleigh/[email protected] | |
- name: run tests | |
run: | | |
nox -s test-data-download-source | |
nox -s test-data-download-generated-ci | |
nox -s coverage --verbose | |
- name: upload code coverage | |
uses: codecov/codecov-action@v3 |