Skip to content

chore(deps): update github-actions to df4cb1c (#54) #102

chore(deps): update github-actions to df4cb1c (#54)

chore(deps): update github-actions to df4cb1c (#54) #102

Workflow file for this run

name: Build
on:
push:
branches: ["master"]
tags-ignore: ["*"]
pull_request:
concurrency:
group: build-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
with:
go-version-file: go.mod
- run: go build ./...
- run: go vet ./...
- run: go test ./...