build(deps): bump actions/upload-artifact from 6 to 7 #640
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: CI | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - "!**" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| format: | |
| name: Format check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: 'go.mod' | |
| - name: Ensure no formatting changes | |
| run: | | |
| go fmt ./... | |
| git diff --exit-code | |
| - name: Ensure no use of empty interface (should be any) | |
| run: | | |
| ! egrep -R --exclude-dir .git 'interface\{\}' | |
| test: | |
| uses: ./.github/workflows/_tests.yaml | |
| with: | |
| arch: amd64 | |
| runner: ubuntu-24.04 |