Bump actions/setup-python from 6.1.0 to 6.2.0 #235
Workflow file for this run
This file contains hidden or 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: Code Quality Checks | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| unit-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Build Container for Unit Tests | |
| run: | | |
| podman build -t localhost/unit-tests:latest -f Containerfile.unit-tests . | |
| - name: Run Unit Tests | |
| run: | | |
| podman run -t localhost/unit-tests:latest | |
| format-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Download pg formatter using github token to avoid issues with rate limiting | |
| run: | | |
| curl -H "Authorization: Bearer $GITHUB_TOKEN" -L -o pgformatter.tgz https://github.com/darold/pgFormatter/archive/refs/tags/v5.6.tar.gz | |
| - name: Run format script | |
| run: ./format-sql-schema.sh | |
| - name: Check for uncommitted changes | |
| run: | | |
| if [[ $(git status --porcelain) ]]; then | |
| echo "Code is not properly formatted. Please run ./format-sql-schema.sh and commit the changes." | |
| exit 1 | |
| fi |