golangci-lint-action/.github/workflows/test.yml
Fernandez Ludovic 7fa6da85a5
Some checks are pending
Code Scanning - Action / codeQL (push) Waiting to run
build-and-test / build (push) Waiting to run
build-and-test / test (macos-latest, ) (push) Blocked by required conditions
build-and-test / test (macos-latest, latest) (push) Blocked by required conditions
build-and-test / test (macos-latest, v2.7) (push) Blocked by required conditions
build-and-test / test (macos-latest, v2.7.2) (push) Blocked by required conditions
build-and-test / test (ubuntu-22.04-arm, ) (push) Blocked by required conditions
build-and-test / test (ubuntu-22.04-arm, latest) (push) Blocked by required conditions
build-and-test / test (ubuntu-22.04-arm, v2.7) (push) Blocked by required conditions
build-and-test / test (ubuntu-22.04-arm, v2.7.2) (push) Blocked by required conditions
build-and-test / test (ubuntu-latest, ) (push) Blocked by required conditions
build-and-test / test (ubuntu-latest, latest) (push) Blocked by required conditions
build-and-test / test (ubuntu-latest, v2.7) (push) Blocked by required conditions
build-and-test / test (ubuntu-latest, v2.7.2) (push) Blocked by required conditions
build-and-test / test (windows-latest, ) (push) Blocked by required conditions
build-and-test / test (windows-latest, latest) (push) Blocked by required conditions
build-and-test / test (windows-latest, v2.7) (push) Blocked by required conditions
build-and-test / test (windows-latest, v2.7.2) (push) Blocked by required conditions
build-and-test / test-go-install (macos-latest, ) (push) Blocked by required conditions
build-and-test / test-go-install (macos-latest, 655e8ede5178280b2a640e185bc4a343aed0f54e) (push) Blocked by required conditions
build-and-test / test-go-install (macos-latest, latest) (push) Blocked by required conditions
build-and-test / test-go-install (macos-latest, v2.7.0) (push) Blocked by required conditions
build-and-test / test-go-install (ubuntu-22.04-arm, ) (push) Blocked by required conditions
build-and-test / test-go-install (ubuntu-22.04-arm, 655e8ede5178280b2a640e185bc4a343aed0f54e) (push) Blocked by required conditions
build-and-test / test-go-install (ubuntu-22.04-arm, latest) (push) Blocked by required conditions
build-and-test / test-go-install (ubuntu-22.04-arm, v2.7.0) (push) Blocked by required conditions
build-and-test / test-go-install (ubuntu-latest, ) (push) Blocked by required conditions
build-and-test / test-go-install (ubuntu-latest, 655e8ede5178280b2a640e185bc4a343aed0f54e) (push) Blocked by required conditions
build-and-test / test-go-install (ubuntu-latest, latest) (push) Blocked by required conditions
build-and-test / test-go-mod (ubuntu-22.04-arm, fixtures/go-mod) (push) Blocked by required conditions
build-and-test / test-go-install (ubuntu-latest, v2.7.0) (push) Blocked by required conditions
build-and-test / test-go-install (windows-latest, ) (push) Blocked by required conditions
build-and-test / test-go-install (windows-latest, 655e8ede5178280b2a640e185bc4a343aed0f54e) (push) Blocked by required conditions
build-and-test / test-go-install (windows-latest, latest) (push) Blocked by required conditions
build-and-test / test-go-install (windows-latest, v2.7.0) (push) Blocked by required conditions
build-and-test / test-go-mod (macos-latest, fixtures/go-mod) (push) Blocked by required conditions
build-and-test / test-go-mod (macos-latest, fixtures/go-tool) (push) Blocked by required conditions
build-and-test / test-go-mod (ubuntu-22.04-arm, fixtures/go-tool) (push) Blocked by required conditions
build-and-test / test-go-mod (ubuntu-latest, fixtures/go-mod) (push) Blocked by required conditions
build-and-test / test-go-mod (ubuntu-latest, fixtures/go-tool) (push) Blocked by required conditions
build-and-test / test-go-mod (windows-latest, fixtures/go-mod) (push) Blocked by required conditions
build-and-test / test-go-mod (windows-latest, fixtures/go-tool) (push) Blocked by required conditions
build-and-test / test-plugins (macos-latest, ) (push) Blocked by required conditions
build-and-test / test-plugins (macos-latest, latest) (push) Blocked by required conditions
build-and-test / test-plugins (macos-latest, v2.7) (push) Blocked by required conditions
build-and-test / test-plugins (macos-latest, v2.7.1) (push) Blocked by required conditions
build-and-test / test-plugins (ubuntu-22.04-arm, ) (push) Blocked by required conditions
build-and-test / test-plugins (ubuntu-22.04-arm, latest) (push) Blocked by required conditions
build-and-test / test-plugins (ubuntu-22.04-arm, v2.7) (push) Blocked by required conditions
build-and-test / test-plugins (ubuntu-22.04-arm, v2.7.1) (push) Blocked by required conditions
build-and-test / test-plugins (ubuntu-latest, ) (push) Blocked by required conditions
build-and-test / test-plugins (ubuntu-latest, latest) (push) Blocked by required conditions
build-and-test / test-plugins (ubuntu-latest, v2.7) (push) Blocked by required conditions
build-and-test / test-plugins (ubuntu-latest, v2.7.1) (push) Blocked by required conditions
build-and-test / test-plugins (windows-latest, ) (push) Blocked by required conditions
build-and-test / test-plugins (windows-latest, latest) (push) Blocked by required conditions
build-and-test / test-plugins (windows-latest, v2.7) (push) Blocked by required conditions
build-and-test / test-plugins (windows-latest, v2.7.1) (push) Blocked by required conditions
build-and-test / test-monorepo (macos-latest) (push) Blocked by required conditions
build-and-test / test-monorepo (ubuntu-22.04-arm) (push) Blocked by required conditions
build-and-test / test-monorepo (ubuntu-latest) (push) Blocked by required conditions
build-and-test / test-monorepo (windows-latest) (push) Blocked by required conditions
chore: update workflow
2025-12-08 12:54:19 +01:00

183 lines
4.3 KiB
YAML

name: "build-and-test"
on:
pull_request:
branches:
- main
push:
branches:
- main
permissions:
contents: read
jobs:
# make sure build/ci work properly
build:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v6
with:
node-version: 24.x
- uses: actions/checkout@v6
- run: |
npm install
npm run all
# Fail the build if there are changes.
- run: git diff --exit-code -- dist
# make sure the action works on a clean machine without building
test:
needs: [ build ]
strategy:
matrix:
os:
- ubuntu-latest
- ubuntu-22.04-arm
- macos-latest
- windows-latest
version:
- ""
- "latest"
- "v2.7"
- "v2.7.2"
runs-on: ${{ matrix.os }}
permissions:
contents: read
pull-requests: read
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24.x
- uses: actions/setup-go@v6
with:
go-version: oldstable
- uses: ./
with:
version: ${{ matrix.version }}
args: --timeout=5m --issues-exit-code=0 ./fixtures/simple/...
only-new-issues: true
# make sure the action works on a clean machine without building (go-install mode)
test-go-install:
needs: [ build ]
strategy:
matrix:
os:
- ubuntu-latest
- ubuntu-22.04-arm
- macos-latest
- windows-latest
version:
- ""
- "latest"
- "v2.7.0"
- "655e8ede5178280b2a640e185bc4a343aed0f54e"
runs-on: ${{ matrix.os }}
permissions:
contents: read
pull-requests: read
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24.x
- uses: actions/setup-go@v6
with:
go-version: oldstable
- uses: ./
with:
version: ${{ matrix.version }}
args: --timeout=5m --issues-exit-code=0 ./fixtures/simple/...
only-new-issues: true
install-mode: goinstall
test-go-mod:
needs: [ build ]
strategy:
matrix:
os:
- ubuntu-latest
- ubuntu-22.04-arm
- macos-latest
- windows-latest
wd:
- fixtures/go-mod
- fixtures/go-tool
runs-on: ${{ matrix.os }}
permissions:
contents: read
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24.x
- uses: actions/setup-go@v6
with:
go-version: oldstable
- uses: ./
with:
working-directory: ${{ matrix.wd }}
args: --timeout=5m --issues-exit-code=0 ./...
# make sure the action works on a clean machine with plugins
test-plugins:
needs: [ build ]
strategy:
matrix:
os:
- ubuntu-latest
- ubuntu-22.04-arm
- macos-latest
- windows-latest
version:
- ""
- "latest"
- "v2.7"
- "v2.7.1"
runs-on: ${{ matrix.os }}
permissions:
contents: read
pull-requests: read
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24.x
- uses: actions/setup-go@v6
with:
go-version: oldstable
- uses: ./
with:
version: ${{ matrix.version }}
working-directory: fixtures/plugins
args: --timeout=5m --issues-exit-code=0 ./...
test-monorepo:
needs: [ build ]
strategy:
matrix:
os:
- ubuntu-latest
- ubuntu-22.04-arm
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
permissions:
contents: read
pull-requests: read
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24.x
- uses: actions/setup-go@v6
with:
go-version: oldstable
- uses: ./
with:
working-directory: fixtures/monorepo
experimental: "automatic-module-directories"
args: --timeout=5m --issues-exit-code=0 ./...