Skip to content

build(deps): bump actions/checkout from 3 to 4 #63

build(deps): bump actions/checkout from 3 to 4

build(deps): bump actions/checkout from 3 to 4 #63

Workflow file for this run

name: GitHub Actions CI
on:
push:
branches: [main]
pull_request: {}
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.19', '1.20' ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4.0.1
with:
go-version: ${{ matrix.go }}
- run: make tools
- run: make depscheck
- run: make lint
- run: make build
- run: make test