Skip to content

tests + config + packaging #minor #48

tests + config + packaging #minor

tests + config + packaging #minor #48

Workflow file for this run

# This workflow will install Python dependencies,
# then run tests over a variety of Python versions.
name: test
on:
push:
branches: [ "main", "dev*", "feature*", "fix*"]
tags: [ '*' ]
pull_request:
branches: [ "main", "dev*", "feature*", "fix*"]
jobs:
build:
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@v3
- 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@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false