Skip to content

Merge pull request #35 from ALPHA-g-Experiment/sequencer #55

Merge pull request #35 from ALPHA-g-Experiment/sequencer

Merge pull request #35 from ALPHA-g-Experiment/sequencer #55

Workflow file for this run

name: Build & Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
merge_group:
types: [ checks_requested ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# If this changes, also change the badge in the README
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run scripts help flag
run: |
for script in bin/*.py; do
echo "Running script: ${script}"
./${script} --help
done