Skip to content

Bump deps & Go to 1.22 #41

Bump deps & Go to 1.22

Bump deps & Go to 1.22 #41

Workflow file for this run

on:
# On push/pr & weekly
push:
pull_request:
name: CI
jobs:
test:
strategy:
matrix:
go-version: [1.22.x]
platform: [ubuntu-latest, macos-latest]
runs-on: "${{ matrix.platform }}"
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Build
run: go build ./...
- name: Test
run: go test ./...