Skip to content

chore(deps): update golang docker tag to v1.22.5 #629

chore(deps): update golang docker tag to v1.22.5

chore(deps): update golang docker tag to v1.22.5 #629

Workflow file for this run

name: "CI"
on:
push:
branches:
- "master"
pull_request:
jobs:
basic-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.21.3"
- name: Cache Go modules
uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: "Formatting check"
run: make fmt
- name: "Compile"
run: make build
- name: "Test"
run: make test