We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8361596 commit 6f50781Copy full SHA for 6f50781
2 files changed
.github/workflows/lint.yaml
@@ -0,0 +1,24 @@
1
+name: Lint
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
+ workflow_dispatch:
9
10
+jobs:
11
+ test:
12
+ runs-on: ubuntu-latest
13
+ strategy:
14
+ fail-fast: true
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - uses: actions/setup-python@v5
18
+ with:
19
+ python-version: 3.x
20
+ - uses: pre-commit/action@v3.0.1
21
+ - uses: pre-commit-ci/lite-action@v1.1.0
22
+ if: always()
23
24
+ msg: Apply code formatting with pre-commit
.github/workflows/publish.yaml
@@ -6,7 +6,7 @@ name: Release Package
on:
schedule:
- - cron: '0 0 * * *'
+ - cron: 0 0 * * *
workflow_dispatch:
jobs:
0 commit comments