Skip to content

Commit

Permalink
add CI for examples dry run
Browse files Browse the repository at this point in the history
  • Loading branch information
mkannwischer committed Mar 15, 2024
1 parent 95fd0bb commit 1375b16
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/test_examples_dry_run.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Examples Dry Run
on:
push:
branches: [ '*' ]
pull_request:
branches: [ "main" ]
jobs:
build_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install python dependencies
run: |
python3 -m pip install --break-system-packages -r requirements.txt
- name: Run examples
run: |
python3 examples.py --dry-run

0 comments on commit 1375b16

Please sign in to comment.