Skip to content

Add GitHub Actions workflow for all CircleCI jobs #3

Add GitHub Actions workflow for all CircleCI jobs

Add GitHub Actions workflow for all CircleCI jobs #3

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.24.11'
- name: Run tests
run: make test --always-make