Skip to content

Blink amp lights twice as frequently. #453

Blink amp lights twice as frequently.

Blink amp lights twice as frequently. #453

Workflow file for this run

on: [push, pull_request]
name: Build/Test
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.22.x
- name: Check out code
uses: actions/checkout@v2
- name: Build
run: go build
- name: Test
run: go test ./...
- name: Check formatting
run: test -z "$(go fmt ./...)"