Skip to content

Rename github action to Test #1

Rename github action to Test

Rename github action to Test #1

Workflow file for this run

name: Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
tests:
name: Test Suite
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Setup
uses: actions/setup-go@v5
with:
go-version: '1.22.x'
- name: Build
run: go build -v ./...
- name: Test
run: go test ./...