Skip to content

chore: pin GitHub Actions to commit SHA #254

chore: pin GitHub Actions to commit SHA

chore: pin GitHub Actions to commit SHA #254

Workflow file for this run

name: CI
on:
pull_request:
branches:
- 'main'
push:
branches:
- 'main'
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5
- name: check headers
run: |
make ltag-validate
- name: test
run: |
go vet ./...
go test ./...