-
-
Notifications
You must be signed in to change notification settings - Fork 8
41 lines (39 loc) · 827 Bytes
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: "Testing"
on:
push:
paths:
- "cmd/**"
- "pkg/**"
- "main.go"
branches:
- master
pull_request:
paths:
- "cmd/**"
- "pkg/**"
- "main.go"
branches:
- master
jobs:
unit-tests:
strategy:
matrix:
go: ["1.21"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Install Task
uses: arduino/setup-task@v1
with:
version: 3.x
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Run tests
run: |
go install github.com/gotesttools/gotestfmt/v2/cmd/gotestfmt@latest
cp config.example.yml config.yml
task test