fix(example): pytorch not reacting to change of os #103
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: CI | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "installation_instruction/**" | |
- "examples/**" | |
- "tests/**" | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "installation_instruction/**" | |
- "examples/**" | |
- "tests/**" | |
workflow_dispatch: | |
jobs: | |
build-and-test: | |
name: Testing on ${{matrix.os}} | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
# Here, we are testing the oldest and the newest supported Python version. | |
# If this is insufficient for your package, consider adding more versions. | |
python-version: ["3.10", "3.12"] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
# setuptools_scm requires a non-shallow clone of the repository | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Python package | |
run: | | |
python -m pip install .[tests] | |
- name: Run Python tests | |
run: | | |
python -m pytest | |
coverage: | |
name: Coverage Testing | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install Python package | |
run: | | |
python -m pip install .[tests] | |
- name: Run Python tests | |
run: | | |
python -m pytest --cov --cov-report=xml | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
fail_ci_if_error: false | |
files: ./coverage.xml | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: instructions-d-installation/installation-instruction | |
verbose: true |