Skip to content

ci: bump to go 1.22 #22

ci: bump to go 1.22

ci: bump to go 1.22 #22

Workflow file for this run

name: ci
permissions:
contents: read
on:
push:
branches:
- master
pull_request:
jobs:
test:
strategy:
matrix:
go-version: [1.21.x, 1.22.x]
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@f6164bd8c8acb4a71fb2791a8b6c4024ff038dab # v3.0.0
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # v3.0.1
with:
persist-credentials: false
- name: Build
run: go build
- name: Test
run: go test -v
- name: Examples
working-directory: examples
run: make images