-
Notifications
You must be signed in to change notification settings - Fork 2
42 lines (35 loc) · 955 Bytes
/
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
name: Tests
on:
push:
branches: [ "master" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "master" ]
# Builds images for target boards.
permissions:
contents: read
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.22']
timeout-minutes: 10
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Go ${{ matrix.go }}
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version: ${{ matrix.go }}
- name: Cache tools
uses: actions/cache@v4
with:
path: |
./hack/bin
key: ${{ runner.os }}-aptre-tools-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-aptre-tools-
- name: Test Go
run: make test
- name: Lint Go
run: make lint