chore: bump thenativeweb/get-next-version from 2.7.6 to 2.7.7 in the github-actions group #63
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: QA | |
| on: pull_request | |
| permissions: | |
| contents: read | |
| packages: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| qa: | |
| name: QA | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v7 | |
| - name: Use Go | |
| uses: actions/setup-go@v7.0.0 | |
| with: | |
| go-version-file: ./go.mod | |
| #TODO: Implement QA once tests are available | |
| - name: Run QA | |
| if: false | |
| run: | | |
| make qa | |
| - name: Build artifacts | |
| env: | |
| GOMODCACHE: /tmp/go/pkg/mod | |
| run: | | |
| make build |