Skip to content

Bump the actions group with 3 updates #164

Bump the actions group with 3 updates

Bump the actions group with 3 updates #164

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@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
with:
egress-policy: audit
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
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