We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6bf097 commit cc0fae4Copy full SHA for cc0fae4
.github/workflows/test.yaml
@@ -1,22 +1,19 @@
1
name: Test
2
on:
3
push:
4
+ branches:
5
+ - main
6
pull_request:
7
8
9
workflow_dispatch:
- schedule:
- - cron: "0 8 * * 1"
10
jobs:
11
tests:
12
runs-on: ubuntu-latest
13
strategy:
14
matrix:
15
py_ver: ["3.9", "3.10"]
- mysql_ver: ["8.0", "5.7"]
- include:
16
- - py_ver: "3.8"
17
- mysql_ver: "5.7"
18
- - py_ver: "3.7"
19
+ mysql_ver: ["8.0"]
20
steps:
21
- uses: actions/checkout@v3
22
- name: Set up Python ${{matrix.py_ver}}
@@ -31,4 +28,4 @@ jobs:
31
28
run: |
32
29
python_version=${{matrix.py_ver}}
33
30
black element_zstack --check --verbose --target-version py${python_version//.}
34
-
+ black notebooks --check --verbose --target-version py${python_version//.}
0 commit comments