Skip to content

ci: update Go versions in CI workflow and improve caching (GH-88) #50

ci: update Go versions in CI workflow and improve caching (GH-88)

ci: update Go versions in CI workflow and improve caching (GH-88) #50

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.13', '1.23', '1.24' ]
name: Build and Test (Go ${{ matrix.go }})
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
cache-dependency-path: 'go.sum'
- run: go test