Skip to content

feat: visualize list of FSWs #4

feat: visualize list of FSWs

feat: visualize list of FSWs #4

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