fix: avoid reserved QML identifier in date dialog #115
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: Pre-commit Checks | |
| on: | |
| push: | |
| pull_request: | |
| branches: [master, main] | |
| jobs: | |
| pre-commit-check: | |
| runs-on: ubuntu-latest | |
| # prek builds the golangci-lint hook with its own toolchain; GOTOOLCHAIN=auto | |
| # lets it fetch whatever Go version core/go.mod requires instead of pinning one. | |
| env: | |
| GOTOOLCHAIN: auto | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: core/go.mod | |
| - name: run pre-commit hooks | |
| uses: j178/prek-action@v2 |