Revert the CI task merge + add filters (#878)
* revert the ci task merge * add filters * fix typo
This commit is contained in:
parent
c4ff8ab640
commit
bffc739265
|
|
@ -0,0 +1,20 @@
|
|||
name: docfx
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: windows-latest
|
||||
|
||||
steps:
|
||||
- name: check out code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: install docfx
|
||||
run: choco install docfx -y
|
||||
|
||||
- name: run .\build\docfx.cmd
|
||||
shell: cmd
|
||||
run: .\build\docfx.cmd
|
||||
|
|
@ -1,48 +0,0 @@
|
|||
name: docs
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
docfx:
|
||||
runs-on: windows-latest
|
||||
|
||||
steps:
|
||||
- name: check out code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: install docfx
|
||||
run: choco install docfx -y
|
||||
|
||||
- name: run .\build\docfx.cmd
|
||||
shell: cmd
|
||||
run: .\build\docfx.cmd
|
||||
|
||||
markdownlint:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: check out code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: install markdownlint-cli
|
||||
run: sudo npm install -g markdownlint-cli
|
||||
|
||||
- name: run markdownlint
|
||||
run: markdownlint .
|
||||
|
||||
misspell:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: check out code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: install misspell
|
||||
run: |
|
||||
curl -L -o ./install-misspell.sh https://git.io/misspell
|
||||
sh ./install-misspell.sh
|
||||
|
||||
- name: run misspell
|
||||
run: ./bin/misspell -error .
|
||||
|
|
@ -3,8 +3,12 @@ name: .NET Code Coverage
|
|||
on:
|
||||
push:
|
||||
branches: [ master1 ]
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
pull_request:
|
||||
branches: [ master1 ]
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
|
||||
jobs:
|
||||
build-test-report:
|
||||
|
|
|
|||
|
|
@ -3,6 +3,8 @@ name: .NET Linux
|
|||
on:
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
|
||||
jobs:
|
||||
build-test:
|
||||
|
|
|
|||
|
|
@ -3,6 +3,8 @@ name: .NET Windows
|
|||
on:
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
|
||||
jobs:
|
||||
build-test:
|
||||
|
|
|
|||
|
|
@ -3,8 +3,12 @@ name: .NET
|
|||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
|
||||
jobs:
|
||||
build-test-pack:
|
||||
|
|
|
|||
|
|
@ -3,8 +3,12 @@ name: Integration Tests
|
|||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
|
||||
jobs:
|
||||
redis-test:
|
||||
|
|
|
|||
|
|
@ -0,0 +1,21 @@
|
|||
name: markdownlint
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
paths:
|
||||
- '**.md'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: check out code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: install markdownlint-cli
|
||||
run: sudo npm install -g markdownlint-cli
|
||||
|
||||
- name: run markdownlint
|
||||
run: markdownlint .
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
name: spellcheck
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: check out code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: install misspell
|
||||
run: |
|
||||
curl -L -o ./install-misspell.sh https://git.io/misspell
|
||||
sh ./install-misspell.sh
|
||||
|
||||
- name: run misspell
|
||||
run: ./bin/misspell -error .
|
||||
Loading…
Reference in New Issue