#12 use oidc publishing #20
Workflow file for this run
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: Validate | |
# Only run on PRs to the main branch | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout project code | |
- uses: actions/checkout@v3 | |
# Install and run shellcheck for all shell scripts | |
- run: sudo apt install shellcheck | |
- run: for f in $(find scripts -type f -name *.sh); do shellcheck $f; done; | |
# Use python setup action to configure version | |
- uses: actions/setup-python@v3 | |
with: | |
python-version: '3.x' | |
# Install python poetry and dependencies for use in later steps | |
- run: ./scripts/validate.sh |