Remove paths to check workflows.

This commit is contained in:
Jean-Michel Picod
2020-02-24 19:11:15 +01:00
parent 80096529ad
commit 40d5121d0b
3 changed files with 22 additions and 22 deletions

View File

@@ -1,10 +1,10 @@
name: markdownlint
on:
push:
paths:
- '**/*.md'
- '.markdownlint.json'
- '!third_party/**'
on: [push]
# push:
# paths:
# - '**/*.md'
# - '.markdownlint.json'
# - '!third_party/**'
jobs:
pylint:

View File

@@ -1,10 +1,10 @@
name: pylint
on:
push:
paths:
- '**/*.py'
- '.pylintrc'
- '!third_party/**'
on: [push]
# push:
# paths:
# - '**/*.py'
# - '.pylintrc'
# - '!third_party/**'
jobs:
pylint:
runs-on: ubuntu-latest

View File

@@ -1,13 +1,13 @@
on:
push:
paths:
- 'examples/*.rs'
- 'libraries/**/*.rs'
- 'src/**/*.rs'
- 'patches/**'
- '**/Cargo.toml'
- '.cargo/config'
- '!third_party/**'
on: [push]
# push:
# paths:
# - 'examples/*.rs'
# - 'libraries/**/*.rs'
# - 'src/**/*.rs'
# - 'patches/**'
# - '**/Cargo.toml'
# - '.cargo/config'
# - '!third_party/**'
jobs:
initial_setup: