Skip to content

Go

Go #42

Workflow file for this run

name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: "30 03 * * 6"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/[email protected]
- name: Set up Go
uses: actions/[email protected]
with:
go-version: 1.22
- name: Environment Information
run: go env
- name: Fix Package
run: go fix ./lib
- name: Format Package
run: go fmt ./lib
- name: Go Version
run: go version
- name: Vet Package
run: go vet ./lib