Skip to content

github actions init (#20) #7

github actions init (#20)

github actions init (#20) #7

Workflow file for this run

name: Sec CI
on: push
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/checkout@v4
- name: Set up Go Env
uses: actions/setup-go@v4
with:
go-version-file: go.mod
cache: true
id: go
- name: Test
run: go test -v ./...