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 50ce319 commit 2b29518Copy full SHA for 2b29518
.github/workflows/test.yaml
@@ -1,20 +1,19 @@
1
name: Test
2
on:
3
push:
4
+ branches:
5
+ - main
6
pull_request:
7
8
9
workflow_dispatch:
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:
- - py_ver: "3.8"
- mysql_ver: "5.7"
16
- - py_ver: "3.7"
17
+ mysql_ver: ["8.0"]
18
steps:
19
- uses: actions/checkout@v3
20
- name: Set up Python ${{matrix.py_ver}}
@@ -29,4 +28,3 @@ jobs:
29
28
run: |
30
python_version=${{matrix.py_ver}}
31
black element_animal --check --verbose --target-version py${python_version//.}
32
-
0 commit comments