Skip to content

Commit

Permalink
🚧 init ci for reference tests
Browse files Browse the repository at this point in the history
AbdelStark committed Aug 2, 2024
1 parent 46fe7f9 commit 5568cdb
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/reference_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Reference Tests

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.12"

- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: |
cd tests/references/bdhke-nutshell
poetry install
- name: Run reference tests
run: |
cd tests/references/bdhke-nutshell
poetry run pytest -v bdhke_nutshell.py

0 comments on commit 5568cdb

Please sign in to comment.