Skip to content

Test fast on push/PR and all on schedule. #1

Test fast on push/PR and all on schedule.

Test fast on push/PR and all on schedule. #1

Workflow file for this run

name: Run Qadence fast tests.
on: [push]

Check failure on line 3 in .github/workflows/test_fast.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test_fast.yml

Invalid workflow file

You have an error in your yaml syntax on line 3
pull_request:
branches:
- main
workflow_dispatch: {}
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test_qadence_ubuntu:
name: Test Qadence (ubuntu)
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Select Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install Hatch
run: |
pip install hatch
- name: Run tests
run: |
hatch -v run test -m "not slow"