Skip to content

Bump wangyoucao577/go-release-action from 1.40 to 1.42 #124

Bump wangyoucao577/go-release-action from 1.40 to 1.42

Bump wangyoucao577/go-release-action from 1.40 to 1.42 #124

Workflow file for this run

name: CI
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
workflow_dispatch:
jobs:
build-and-test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Setup Go environment
uses: actions/setup-go@v4
with:
go-version: 1.18
- name: Install go mods
run: go mod download
- name: go build
run: go build -v
- name: go vet
run: go vet ./...
- name: go tests
run: go test ./... -v