Skip to content

chore(deps): bump actions/checkout from 2 to 4 #173

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

chore(deps): bump actions/checkout from 2 to 4 #173

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v3
with:
go-version: "^1.18"
- uses: golangci/golangci-lint-action@v3.1.0
with:
version: v1.45.2
- name: Unit testing
run: go test ./...
- name: Validate Generated Files
run: |
go install github.com/mailru/easyjson/easyjson@v0.7.7
go generate ./...
git diff --quiet || exit 1