mirror of
https://github.com/CPunch/gopenfusion.git
synced 2024-11-10 02:20:05 +00:00
23 lines
378 B
YAML
23 lines
378 B
YAML
name: unit-tests
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- ./**.go
|
|
- go.mod
|
|
- go.sum
|
|
- .github/workflows/tests.yaml
|
|
|
|
jobs:
|
|
run:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: '1.21.x'
|
|
- name: Test with the Go CLI
|
|
run: go test -v ./...
|