feat: visualize list of FSWs #4
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 and Test | |
on: | |
push: | |
branches: [master, main] | |
pull_request: | |
branches: [master, main] | |
jobs: | |
lint_and_test: | |
name: Lint and Test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.8"] # "3.10", "3.12" can be added when we figure out to add pylint: diable=too-many-positional-arguments to 3.8 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Requirements | |
run: pip install .[dev,mouthing,server] | |
- name: Lint Code | |
run: pylint signwriting | |
- name: Test Code | |
run: pytest signwriting |