Skip to content

chore: add CI workflow #5

chore: add CI workflow

chore: add CI workflow #5

Workflow file for this run

name: Go CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Build
run: go build -o api-validator .
- name: Test
run: go test -v ./...