Merge pull request #10 from gittuf/dependabot/github_actions/actions/… #46
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: Run gittuf demo | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
run-demo: | |
name: Run demo | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout demo | |
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 | |
- name: Set up Python | |
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d | |
with: | |
python-version: '3.11' | |
- name: Install gittuf | |
uses: gittuf/gittuf-installer@8ce8fbd070477ec72678151e82b82c3d866d9fcd | |
- name: Run demo with --no-prompt | |
run: | | |
python3 run-demo.py --no-prompt |