mirror of
https://github.com/mark3labs/kit.git
synced 2026-06-14 03:30:26 +00:00
18 lines
279 B
YAML
18 lines
279 B
YAML
name: go
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
- run: go test ./... -race
|