Skip to content

chore(deps): update all non-major github action dependencies #114

chore(deps): update all non-major github action dependencies

chore(deps): update all non-major github action dependencies #114

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: Setup Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: "1.21.5"
- name: Install dependencies
run: go get .
- name: Build
run: go build -v ./...
- name: Test
run: make test