Signed-off-by: Matheus Sampaio Queiroga <srherobrine20@gmail.com>
23 lines
358 B
YAML
23 lines
358 B
YAML
name: Golang test
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- "**.go"
|
|
|
|
jobs:
|
|
go-test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
name: Checkout code
|
|
|
|
- uses: actions/setup-go@v4
|
|
with:
|
|
go-version-file: "go.mod"
|
|
cache: true
|
|
|
|
- name: Test
|
|
run: go test -timeout 0 -v ./...
|