Skip to content

Bump cachix/install-nix-action from 26 to 27 #311

Bump cachix/install-nix-action from 26 to 27

Bump cachix/install-nix-action from 26 to 27 #311

Workflow file for this run

on: [push, pull_request]
name: Go
jobs:
linux_test:
name: Test Linux Integration
strategy:
matrix:
go-version: ['oldstable', 'stable']
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Checkout code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Download dependencies
run: go mod download
- name: Go Vet
run: go vet ./...
- name: Fuzz build
run: go build -tags=gofuzz ./...
- name: Test Integration
run: sudo -E env PATH=$PATH go test -v -tags=integration ./...
- name: Check for vulnerabilities
id: govulncheck
uses: golang/govulncheck-action@3a32958c2706f7048305d5a2e53633d7e37e97d0 # v1.0.2
with:
cache: false
go-version-input: ${{ matrix.go-version }}
go-package: ./...