Skip to content

Actions: Bump actions/checkout from 4.1.2 to 4.1.3 #52

Actions: Bump actions/checkout from 4.1.2 to 4.1.3

Actions: Bump actions/checkout from 4.1.2 to 4.1.3 #52

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