Skip to content

Bump actions/checkout from 5 to 6 #25

Bump actions/checkout from 5 to 6

Bump actions/checkout from 5 to 6 #25

Workflow file for this run

name: CI
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "**" ]
permissions:
contents: read
jobs:
build-and-test:
name: Build and Test (${{ matrix.os }}, Go ${{ matrix.go }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
go: ["1.25", "stable"]
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go }}
check-latest: true
cache: true
- name: Show Go env
run: go env
- name: Verify modules
run: go mod verify
- name: Build
run: go build ./...
- name: Run tests
run: go test -v ./...