Skip to content

chore(deps): bump actions/checkout from 4 to 6 #12

chore(deps): bump actions/checkout from 4 to 6

chore(deps): bump actions/checkout from 4 to 6 #12

Workflow file for this run

name: Main
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
main:
name: Main Process
runs-on: ubuntu-latest
env:
GO_VERSION: stable
CGO_ENABLED: 0
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Check and get dependencies
run: |
go mod tidy
git diff --exit-code go.mod
git diff --exit-code go.sum
- name: lint
uses: golangci/[email protected]
with:
version: latest
- name: Make
run: make clean test build