Skip to content

fix

fix #1

Workflow file for this run

name: ci-insights
on:
push:
branches:
- "feature/gh-test-reports-insights"
schedule:
- cron: '0 */3 * * *'
workflow_dispatch:
permissions:
contents: read
jobs:
unit-tests:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version-file: .go-version
- name: Install make
if: runner.os == 'macOS'
run: |
brew install make
export PATH="/usr/local/opt/make/libexec/gnubin:$PATH"
- run: go test -v -race ./... 2>&1 | tee test.output
- uses: ./.github/actions/mergify-insights
with:
job_name: ${{ github.job }}-${{ matrix.os }}
token: ${{ secrets.MERGIFY_TOKEN }}