Skip to content

Fix Slack invite link #1044

Fix Slack invite link

Fix Slack invite link #1044

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
strategy:
matrix:
go: ['1.21', '1.22', '1.23']
os: ['ubuntu-22.04']
fail-fast: false
name: ${{ matrix.os }} / Go ${{ matrix.go }}
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Test
run: make test EXTRAGOARGS=-v