mjwt/.github/workflows/test.yml

16 lines
323 B
YAML
Raw Permalink Normal View History

2024-06-09 01:01:58 +01:00
on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.22.x]
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v4
- run: go build ./cmd/mjwt/
- run: go test ./...