mirror of
https://github.com/taigrr/jety.git
synced 2026-04-02 03:19:03 -07:00
20 lines
405 B
YAML
20 lines
405 B
YAML
name: test
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version: "1.26"
|
|
- run: go test -race -count=1 ./...
|
|
- run: go vet ./...
|
|
- run: go install honnef.co/go/tools/cmd/staticcheck@latest && staticcheck ./...
|