Bump actions/setup-go from 5.1.0 to 5.2.0 #3545
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: database schema sync check | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
schema-sync-test: | |
name: Run tests to check if database schema is in check with go schema constants | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5.2.0 | |
with: | |
go-version-file: './backend/go.mod' | |
- name: Run script file | |
run: | | |
$GITHUB_WORKSPACE/backend-shared/hack/run-db-schema-sync-check.sh | |
shell: bash |