-
Notifications
You must be signed in to change notification settings - Fork 9
44 lines (41 loc) · 993 Bytes
/
test_go.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
name: Test Quasar
on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
# This workflow makes x86_64 binaries for linux.
# TODO: add darwin later
jobs:
test-go:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Get git diff
uses: technote-space/[email protected]
with:
PATTERNS: |
**/**.go
go.mod
go.sum
- name: Setup Golang
if: env.GIT_DIFF
uses: actions/setup-go@v3
with:
go-version: 1.20.7
- name: Display go version
if: env.GIT_DIFF
run: go version
- name: Run all tests
if: env.GIT_DIFF
run: make test-cover
- name: Code coverage report
if: env.GIT_DIFF
uses: codecov/[email protected]