Skip to content

Run github actions on ubuntu-24.04 #192

Run github actions on ubuntu-24.04

Run github actions on ubuntu-24.04 #192

Workflow file for this run

name: Go Tests
on:
push:
branches:
- main
pull_request:
branches:
- '**'
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22.2
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...