Skip to content

chore(deps): update golang docker tag to v1.22.3 (#235) #468

chore(deps): update golang docker tag to v1.22.3 (#235)

chore(deps): update golang docker tag to v1.22.3 (#235) #468

Workflow file for this run

name: build
on:
push:
branches:
- "master"
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22.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: Build
run: |
go build
- name: Tests
run: |
./shuttle run test