Files
overlayfs/.github/workflows/test.yaml
T
Sirherobrine23 243f10ff17
Golang test / go-test (ubuntu-latest) (push) Failing after 19s
Golang test / go-test (windows-latest) (push) Has been cancelled
Golang test / go-test (freebsd-latest) (push) Has been cancelled
add workflow and *bsd init
Signed-off-by: Matheus Sampaio Queiroga <srherobrine20@gmail.com>
2025-07-04 00:33:27 -03:00

30 lines
561 B
YAML

name: Golang test
on:
pull_request:
branches: [main]
push:
branches: [main]
tags-ignore:
- '*'
jobs:
go-test:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest, freebsd-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
name: Checkout code
- uses: actions/setup-go@v4
with:
go-version-file: "go.mod"
cache: true
- name: Download go dependencies
run: go get ./...
- name: Test
run: go test -timeout 0 -v ./...