Skip to content

ci: add Makefile and integrate with GitHub workflows #480

ci: add Makefile and integrate with GitHub workflows

ci: add Makefile and integrate with GitHub workflows #480

Workflow file for this run

name: Test
on:
# Manual trigger
workflow_dispatch:
push:
branches: main
pull_request:
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
- name: Check formatting
run: make fmt
test:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.23', '1.24', '1.25.0-rc.3' ]
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Test
run: make test
race-test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
- name: Test with -race
run: make race