Skip to content

Bump github/codeql-action from 3.25.6 to 3.25.7 in the actions group #126

Bump github/codeql-action from 3.25.6 to 3.25.7 in the actions group

Bump github/codeql-action from 3.25.6 to 3.25.7 in the actions group #126

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@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