File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Test
2+ on :
3+ push :
4+ branches :
5+ - main
6+ pull_request :
7+ branches :
8+ - main
9+ workflow_dispatch :
10+ jobs :
11+ tests :
12+ runs-on : ubuntu-latest
13+ strategy :
14+ matrix :
15+ py_ver : ["3.9", "3.10"]
16+ mysql_ver : ["8.0"]
17+ steps :
18+ - uses : actions/checkout@v3
19+ - name : Set up Python ${{matrix.py_ver}}
20+ uses : actions/setup-python@v4
21+ with :
22+ python-version : ${{matrix.py_ver}}
23+ - name : Install dependencies
24+ run : |
25+ python -m pip install --upgrade pip
26+ pip install flake8 "black[jupyter]"
27+ - name : Run style tests
28+ run : |
29+ python_version=${{matrix.py_ver}}
30+ black element_lab --check --verbose --target-version py${python_version//.}
Original file line number Diff line number Diff line change 11"""Package metadata."""
2+
23__version__ = "0.3.0"
You can’t perform that action at this time.
0 commit comments