We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee0a3ec commit 21ba85cCopy full SHA for 21ba85c
2 files changed
.github/workflows/black.yml
.github/workflows/python-test.yml
@@ -5,15 +5,10 @@ name: Test
5
6
permissions: read-all
7
8
-on:
9
- push:
10
- branches: [ master ]
11
- pull_request:
12
+on: [push, pull_request]
13
14
jobs:
15
build:
16
-
17
runs-on: ubuntu-latest
18
strategy:
19
fail-fast: false
@@ -40,3 +35,8 @@ jobs:
40
35
run: mypy pythonosc examples
41
36
- name: Test with pytest
42
37
run: pytest
38
+ lint:
39
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ - uses: psf/black@stable
0 commit comments