Skip to content

add makefile and rpm spec #3

add makefile and rpm spec

add makefile and rpm spec #3

Workflow file for this run

name: Tests
on:
pull_request:
workflow_call:
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21
- name: Ensure No Formatting Changes
run: |
go fmt ./...
git diff --exit-code
- name: Build and Test
run: |
go test -race ./...