Add CI for examples #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Examples Dry Run | |
on: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install python dependencies | |
run: | | |
python -m pip install -r requirements.txt | |
- name: Run examples | |
run: | | |
(cd paper/scripts && ./slothy_ntt_helium.sh) |