-
-
Notifications
You must be signed in to change notification settings - Fork 68
31 lines (25 loc) · 595 Bytes
/
linux.yml
File metadata and controls
31 lines (25 loc) · 595 Bytes
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
name: Linux Build & Unit tests
on:
push:
branches: [ "v2" ]
pull_request:
types: [ opened, synchronize, reopened, ready_for_review ]
jobs:
test:
strategy:
matrix:
go-version: [ 1.23.x ]
os: [ ubuntu-latest ]
name: Checking
runs-on: ${{ matrix.os }}
steps:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Check out code
uses: actions/checkout@v3
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...