removed extraneous commented out code from tag by variant classificat… #158
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint Package | |
on: | |
push: | |
branches: [main, develop, release/*] | |
tags: | |
- '*.*.*' | |
paths-ignore: | |
- "docs/**" | |
- "**.md" | |
pull_request: | |
branches: "*" | |
paths-ignore: | |
- "docs/**" | |
- "**.md" | |
jobs: | |
pytest: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Lint Check | |
run: | | |
make deps-install | |
poetry run black --check . | |