Skip to content

ci: update CI (#13) #10

ci: update CI (#13)

ci: update CI (#13) #10

Workflow file for this run

name: test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3", "3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip" # caching pip dependencies
- name: Install dependencies
run: |
pip install -r tests/requirements.txt
- name: Run coverage test
run: |
python tests/test_function_coverage.py