-
-
Notifications
You must be signed in to change notification settings - Fork 4
53 lines (46 loc) · 1.23 KB
/
macOS.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
51
52
name: macOS
on:
push:
branches:
- master
- beta
- stable
tags-ignore:
- '**'
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
build:
name: Tests (Go ${{ matrix.go }}, OS ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
go: [ 'stable' ]
os: [ macos-latest ]
env:
GO111MODULE: on
steps:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Show versions
run: go version
- name: Install Go dependencies
run: go mod download
- name: Run golang tests on ${{ matrix.os }}
run: |
go test -v -race -cover -tags=debug ./tests/init
go test -v -race -cover -tags=debug ./tests/happy_scenarios
go test -v -race -cover -tags=debug ./tests/interfaces
go test -v -race -cover -tags=debug ./tests/issues
go test -v -race -cover -tags=debug ./tests/stress
go test -v -race -cover -tags=debug ./tests/disabled_vertices