cache/.github/workflows/test.yml

15 lines
291 B
YAML
Raw Permalink Normal View History

2024-12-24 00:03:10 +00:00
on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.23.x]
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v4
- run: go test ./...