Skip to content

collision avoidance is cool #169

collision avoidance is cool

collision avoidance is cool #169

Workflow file for this run

name: Checks
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ "ubuntu-latest" ]
python-version: ["3.10","3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
with:
options: "--check"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel pipenv
pipenv install
- name: Analysing the code with pylint
run: |
pipenv run pylint $(git ls-files '*.py')