Skip to content

Build and test

Build and test #12

Workflow file for this run

name: Build-and-test
run-name: "Build and test"
on:
workflow_dispatch:
push:
paths-ignore:
- '**.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22.3'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...