Skip to content

Merge pull request #55 from Acellera/morgan_dev #60

Merge pull request #55 from Acellera/morgan_dev

Merge pull request #55 from Acellera/morgan_dev #60

Workflow file for this run

name: unit_tests
on:
push:
branches: [ $default-branch , "main" ]
pull_request:
branches: [ $default-branch , "main" ]
permissions:
contents: read
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10","3.11"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
bash .github/unittest/install_dependencies.sh
- name: Test with pytest
run: |
pytest tests/ --cov=acegen
- name: Check coverage
run: |
coverage report