Skip to content

Update links to public l5kit resources #875

Update links to public l5kit resources

Update links to public l5kit resources #875

Workflow file for this run

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