Skip to content

chore: bump actions/setup-go from 6.5.0 to 7.0.0 #60

chore: bump actions/setup-go from 6.5.0 to 7.0.0

chore: bump actions/setup-go from 6.5.0 to 7.0.0 #60

Workflow file for this run

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