Skip to content

Commit

Permalink
building new test action
Browse files Browse the repository at this point in the history
  • Loading branch information
oferqm authored Feb 15, 2024
1 parent baa2918 commit 254b5af
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/quam_test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Python package

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

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
- name: Test with pytest
run: |
pip install pytest
pytest

0 comments on commit 254b5af

Please sign in to comment.