Skip to content

chore(deps): bump DavidAnson/markdownlint-cli2-action from 21 to 22 in the github-actions group #856

chore(deps): bump DavidAnson/markdownlint-cli2-action from 21 to 22 in the github-actions group

chore(deps): bump DavidAnson/markdownlint-cli2-action from 21 to 22 in the github-actions group #856

Workflow file for this run

name: Test
on:
push:
branches:
- master
- main
paths-ignore:
- "**/*.md"
pull_request:
paths-ignore:
- "**/*.md"
jobs:
Build:
strategy:
matrix:
go-version: [1.25.x]
platform: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
cache: true
cache-dependency-path: '**/go.sum'
- name: Run Test
run: |
go run gotest.tools/gotestsum@latest -f testname -- ./... -race -count=1 -coverprofile=coverage.txt -covermode=atomic -shuffle=on