Skip to content

Reset go.mod temporarily #201

Reset go.mod temporarily

Reset go.mod temporarily #201

Workflow file for this run

name: CI
on: push
env:
GO_VERSION: 1.21
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Go
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
with:
go-version: ${{ env.GO_VERSION }}
- name: Build
run: go build -v ./...
- name: Run Tests
run: go test -v ./...