Skip to content

Disable the distutils detection code, it seems to break on newer vers… #275

Disable the distutils detection code, it seems to break on newer vers…

Disable the distutils detection code, it seems to break on newer vers… #275

Workflow file for this run

name: Style and Formatting Checks
on: [push]
jobs:
build:
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@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install yapf
- name: Style and Formatting Checks
run: |
yapf --diff --recursive .