Skip to content

Fix codebuild policy length #618

Fix codebuild policy length

Fix codebuild policy length #618

Workflow file for this run

name: Static Checking
on:
workflow_dispatch:
pull_request:
branches:
- main
- release/*
- main-v2
jobs:
Check:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install Requirements
run: |
python -m pip install --upgrade pip
python -m pip install isort
- name: Lint
run: make lint