Browse Source

style: lint

pull/382/head
Richard Nemeth 2 years ago
parent
commit
7bb9d643aa
  1. 4
      .github/workflows/bump.yaml
  2. 2
      .github/workflows/daily.yaml
  3. 4
      .github/workflows/lint.yaml
  4. 4
      .github/workflows/publish.yaml

4
.github/workflows/bump.yaml

@ -2,8 +2,8 @@ name: Bump version
on:
workflow_run:
workflows: [ "Lint" ]
branches: [ master ]
workflows: ["Lint"]
branches: [master]
types:
- completed

2
.github/workflows/daily.yaml

@ -2,7 +2,7 @@ name: Daily check
on:
schedule:
- cron: '0 4 * * *'
- cron: "0 4 * * *"
jobs:
test:

4
.github/workflows/lint.yaml

@ -2,9 +2,9 @@ name: Lint
on:
push:
branches: [ master ]
branches: [master]
pull_request:
branches: [ master ]
branches: [master]
jobs:
check-commits:

4
.github/workflows/publish.yaml

@ -3,7 +3,7 @@ name: Publish
on:
push:
tags:
- 'v*'
- "v*"
jobs:
publish:
@ -11,7 +11,7 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
fetch-depth: '0'
fetch-depth: "0"
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:

Loading…
Cancel
Save