-
Notifications
You must be signed in to change notification settings - Fork 12
51 lines (43 loc) · 1.08 KB
/
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
42
43
44
45
46
47
48
49
50
51
---
name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
# Grant the ability to checkout the repository
contents: read
jobs:
test:
name: Test
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-test
cancel-in-progress: true
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Install Go Test Tools
run: make install-go-test-tools
- name: Run Go tests
run: make go-tests
- name: Run migration tests
run: make migration-tests
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
format: golang
file: tests/output/cover.out
- name: Test Summary
uses: test-summary/action@v2
with:
paths: "tests/output/*-tests.xml"
if: always()