mirror of
https://github.com/DavidAnson/markdownlint-cli2-action.git
synced 2024-11-21 22:01:30 +01:00
Split workflow jobs so they all run even when one fails (expectedly).
This commit is contained in:
parent
dc22015534
commit
f86b36a138
1 changed files with 17 additions and 12 deletions
29
.github/workflows/test.yml
vendored
29
.github/workflows/test.yml
vendored
|
@ -1,4 +1,4 @@
|
|||
name: Test
|
||||
name: Test markdownlint-cli2-action
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
|
@ -6,22 +6,27 @@ on:
|
|||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
test:
|
||||
name: Test markdownlint-cli2-action
|
||||
no-globs:
|
||||
name: No globs (README.md, no errors)
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: No globs (README.md, no errors)
|
||||
uses: ./
|
||||
- name: One glob (test/error.md, errors)
|
||||
uses: ./
|
||||
- uses: ./
|
||||
one-glob:
|
||||
name: One glob (test/errors.md, errors)
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: ./
|
||||
with:
|
||||
globs: test/errors.md
|
||||
- name: Two globs (README.md and test/error.md, errors)
|
||||
uses: ./
|
||||
two-globs:
|
||||
name: Two globs (README.md and test/errors.md, errors)
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: ./
|
||||
with:
|
||||
globs: |
|
||||
*.md
|
||||
test/*
|
||||
test/*
|
||||
|
|
Loading…
Reference in a new issue