-
Notifications
You must be signed in to change notification settings - Fork 1
50 lines (48 loc) · 1.24 KB
/
ci-tests.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
# NOTE: This name appears in GitHub's Checks API and in workflow's status badge.
name: ci-tests
# Trigger the workflow when:
on:
# A push occurs to one of the matched branches.
push:
branches:
- master
- stable/*
# Or when a pull request event occurs for a pull request against one of the
# matched branches.
pull_request:
branches:
- master
- stable/*
jobs:
tests:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
# NOTE: This name appears in GitHub's Checks API.
name: tests-${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21.x"
- name: Cache Go dependencies
uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Build code
run: |
make build
- name: Run tests
run: |
make test
- name: Check examples
run: |
make clean-examples
make examples
git diff --exit-code examples