mirror of
https://github.com/github/codeql-action.git
synced 2026-01-06 06:30:10 +08:00
20 lines
382 B
YAML
20 lines
382 B
YAML
name: Test reporting a failed run
|
|
on: push
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
language: [javascript]
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: ./init
|
|
with:
|
|
languages: ${{ matrix.language }}
|
|
- name: Fail
|
|
run: exit 1
|
|
- uses: ./analyze
|
|
with:
|
|
category: "/language:${{ matrix.language }}"
|