Skip to content

Bump codecov/codecov-action from 5.0.7 to 5.1.2 #3544

Bump codecov/codecov-action from 5.0.7 to 5.1.2

Bump codecov/codecov-action from 5.0.7 to 5.1.2 #3544

Workflow file for this run

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/[email protected]
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