Skip to content

Bump the actions group with 2 updates (#109) #187

Bump the actions group with 2 updates (#109)

Bump the actions group with 2 updates (#109) #187

Workflow file for this run

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@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
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