-
Notifications
You must be signed in to change notification settings - Fork 3
69 lines (56 loc) · 1.58 KB
/
test.yaml
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: test
on:
push:
branches:
- main
pull_request:
permissions: # added using https://github.com/step-security/secure-repo
contents: read
jobs:
test:
strategy:
matrix:
runs-on:
- ubuntu-latest
- macos-latest
- windows-latest
go-version:
- '1.21'
- '1.22'
runs-on: ${{ matrix.runs-on }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@f086349bfa2bd1361f7909c78558e816508cdc10 # v2.8.0
with:
egress-policy: audit
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
with:
go-version: ${{ matrix.go-version }}
check-latest: true
- name: Install Mage
run: go run mage.go EnsureMage
- name: Run Tests in Bash
if: ${{ matrix.runs-on == 'ubuntu-latest' || matrix.runs-on == 'macos-latest' }}
run: mage test
shell: bash
env:
TEST_SHELL: bash
- name: Run Mage in CMD
if: ${{ matrix.runs-on == 'windows-latest' }}
run: mage test
shell: cmd
env:
TEST_SHELL: cmd
- name: Run Mage in PowerShell
if: ${{ matrix.runs-on == 'windows-latest' }}
run: mage test
shell: powershell
env:
TEST_SHELL: powershell
- name: Run Mage in Git Bash
if: ${{ matrix.runs-on == 'windows-latest' }}
run: mage test
shell: bash
env:
TEST_SHELL: mingw64