Skip to content

test: verify probe wire parameters #13

test: verify probe wire parameters

test: verify probe wire parameters #13

Workflow file for this run

---
name: MegaLinter
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
permissions:
contents: read
concurrency:
group: megalinter-${{ github.ref }}
cancel-in-progress: true
jobs:
megalinter:
name: Read-only lint
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v4
with:
fetch-depth: 0
- name: MegaLinter
id: ml
uses: oxsecurity/megalinter/flavors/c_cpp@a151007c426d6bc89bfde35a7bd3cd64cf373493 # v9.2.0
env:
APPLY_FIXES: none
VALIDATE_ALL_CODEBASE: >-
${{ github.event_name == 'push' &&
contains(fromJSON('["refs/heads/main", "refs/heads/master"]'), github.ref) }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Archive reports
if: success() || failure()
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
with:
name: MegaLinter reports
path: |
megalinter-reports
mega-linter.log