Fix the annotation for non trivial sequence (#20) #15
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: Python tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: {} | |
jobs: | |
lint: | |
name: Run lint | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
lfs: false | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Create venv | |
run: | | |
python -m venv venv | |
source venv/bin/activate | |
pip install -r requirements.dev.txt | |
- name: Run pysen | |
run: | | |
source venv/bin/activate | |
pysen run lint |