Skip to content

feat: Remove q-arm check #49

feat: Remove q-arm check

feat: Remove q-arm check #49

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout directory.
uses: actions/checkout@v3
with:
lfs: 'true'
- name: Set up Python.
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install dependencies.
run: |
make venv
venv/bin/python -m pip install -r requirements.txt
venv/bin/python -m pip install pytest
- name: Run tests.
run: |
source venv/bin/activate
pytest -s