Skip to content

ci: add go1.21 and go1.22 #27

ci: add go1.21 and go1.22

ci: add go1.21 and go1.22 #27

Workflow file for this run

name: Go
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version: ["1.18", "1.19", "1.20", "1.21", "1.22"]
steps:
- uses: actions/checkout@v3
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Display Go version
run: go version
- name: Install Ginkgo
run: go install github.com/onsi/ginkgo/v2/[email protected]
- name: Run tests
run: ./scripts/run_tests.sh