diff --git a/.github/workflows/quam_test.yaml b/.github/workflows/quam_test.yaml new file mode 100644 index 00000000..8168971d --- /dev/null +++ b/.github/workflows/quam_test.yaml @@ -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 \ No newline at end of file