Skip to content

build(deps): bump actions/checkout from 3.6.0 to 4.1.1 #14

build(deps): bump actions/checkout from 3.6.0 to 4.1.1

build(deps): bump actions/checkout from 3.6.0 to 4.1.1 #14

Workflow file for this run

name: unit-test
on:
push:
branches:
- main
paths-ignore:
- '**.md'
pull_request:
branches:
- main
paths-ignore:
- '**.md'
permissions: read-all
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
with:
egress-policy: audit
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version: "1.22"
- name: go mod tidy
run: |
go mod tidy
git diff --exit-code
- name: test
run: make test
- name: build
run: make bin