Skip to content

fix: [VIO-3010] Attempt to use private workflows #246

fix: [VIO-3010] Attempt to use private workflows

fix: [VIO-3010] Attempt to use private workflows #246

Workflow file for this run

name: lint
on:
push: {}
pull_request: {}
jobs:
lint:
runs-on: ubuntu-latest
name: Python 3.8 Lint
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install -U pip poetry
- name: Install Environment
run: |
poetry install
- name: Lint
run: |
make lint