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