Skip to content

docs: update README (#12) #25

docs: update README (#12)

docs: update README (#12) #25

Workflow file for this run

name: test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.22', '1.23' ]
name: Go ${{ matrix.go }} Test
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Install Dependencies
run: go mod download
- name: Run build
run: go build . && go build ./gohf_responses
- name: Run Tests
run: go test ./...