Test G.h subsystem #13
Workflow file for this run
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: Test G.h subsystem | |
on: | |
push: | |
branches: [main] | |
paths: | |
- ".github/workflows/stability_tests.yml" | |
- "src/*" | |
pull_request: | |
paths: | |
- ".github/workflows/stability_tests.yml" | |
- "src/*" | |
workflow_dispatch: | |
env: | |
PLATFORM: ${{ vars.PLATFORM }} | |
jobs: | |
tests: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Cython dependencies | |
run: sudo apt update && sudo apt install -y gcc build-essential python3-dev | |
- name: Install setuptools | |
run: python3 -m pip install setuptools --upgrade | |
- name: Install adeft | |
run: python3 -m pip install git+https://github.com/gyorilab/adeft.git#egg=adeft | |
- name: Install python dependencies | |
run: python3 -m pip install . | |
- name: Run tests | |
run: python3 -m pytest -v |