blob: 40cdc615a6e6c805427a05a87813201802f263b1 (
plain) (
blame)
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
|
name: Go
on:
push:
paths:
- "**.go"
- "**go.mod"
- ".github/workflows/go.yml"
pull_request:
paths:
- "**.go"
- "**go.mod"
- ".github/workflows/go.yml"
jobs:
lint-build-and-test:
name: Lint, Build and Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "stable"
- name: Build
run: go build -v .
- name: Test
run: go test -v .
|