Skip to content

fix publishing #patch #100

fix publishing #patch

fix publishing #patch #100

Workflow file for this run

# This workflow will install Python dependencies,
# then run tests over a variety of Python versions.
name: test
on: [pull_request, push]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest] # [ubuntu-latest, windows-latest, macos-latest]
python-version: [
"3.8",
"3.9",
"3.10",
"3.11",
"3.12",
]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -e .[test]
- name: Test with pytest
run: |
python3 -m pytest --cov=pydependence tests/
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false