Skip to content

build(deps) bump go version to 1.22 and all deps #529

build(deps) bump go version to 1.22 and all deps

build(deps) bump go version to 1.22 and all deps #529

Workflow file for this run

name: Continuous Integration
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.22']
steps:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Get dependencies
run: make dep
- name: Build
run: make build
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.22']
steps:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Get dependencies
run: make dep
- name: Check for unused
run: make unused
- name: Test
run: make test
lint:
name: Lint
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.22']
steps:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Check lints
run: sudo make lint