Skip to content

Update MTAOS to remove usage of flake8 and black pytest plugins. #7

Update MTAOS to remove usage of flake8 and black pytest plugins.

Update MTAOS to remove usage of flake8 and black pytest plugins. #7

Workflow file for this run

name: lint
on:
- push
- pull_request
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install
run: |
$CONDA/bin/conda install -c lsstts ts-pre-commit-config -y
$CONDA/bin/conda install -c conda-forge pre-commit -y
$CONDA/bin/generate_pre_commit_conf
- name: Run pre commit checks
run: $CONDA/bin/pre-commit run --all