Skip to content

Bump actions/setup-go from 6.5.0 to 7.0.0 (#216) #100

Bump actions/setup-go from 6.5.0 to 7.0.0 (#216)

Bump actions/setup-go from 6.5.0 to 7.0.0 (#216) #100

Workflow file for this run

name: ci
# Fast pre-merge gate: formatting, go vet, and the network-free unit tests.
# Runs on every pull request and on pushes to main. Heavier suites (full unit
# tests with network, integration, gosec) stay on-demand / release-time.
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- name: Set up Go
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version: 1.26
- name: Format & vet
run: make check
- name: Unit tests (no network)
run: make run-unit-no-network