Bump zipp from 3.5.0 to 3.19.1 in /l5kit #883
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: L5Kit-tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
jobs: | |
CI-build: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: [3.7, 3.8] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
working-directory: l5kit | |
run: | | |
pip install --upgrade pip | |
pip install .[dev] | |
- name: Lint project | |
working-directory: l5kit | |
run: | | |
./run_tests.sh lint | |
- name: Import sorting project | |
working-directory: l5kit | |
run: | | |
./run_tests.sh isort | |
- name: Run tests | |
working-directory: l5kit | |
run: | | |
./run_tests.sh tests | |
- name: Check types with mypy | |
working-directory: l5kit | |
run: | | |
./run_tests.sh types |