Skip to content

🌱 Bump the all-go-mod-patch-and-minor group across 3 directories with 7 updates #45

🌱 Bump the all-go-mod-patch-and-minor group across 3 directories with 7 updates

🌱 Bump the all-go-mod-patch-and-minor group across 3 directories with 7 updates #45

Workflow file for this run

name: PR Check
on:
pull_request: {}
jobs:
lint:
name: Lint
runs-on: ubuntu-22.04
steps:
- name: Install Go 1.x
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Check out code
uses: actions/checkout@v4
- name: Run unit tests
run: make lint
build:
name: Test & Build
runs-on: ubuntu-22.04
steps:
- name: Install Go 1.x
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Cache
uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Run unit tests
run: make test
- name: Build
run: make build