All passed #10
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: demo_configs | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
demo_runs: | |
# Check to make sure Pavilion can auto-fetch it's dependencies. | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: install-deps | |
run: sudo apt install gcc | |
- name: | |
run: | | |
. examples/demo/activate.sh | |
ls -l examples/demo/tests | |
cat examples/demo/tests/buildit.yaml | |
pav show tests | |
pav run -v QUIET demo advanced buildit | |
pav wait | |
pav results --all-passed |