Skip to content

Updated README for new AAA pipeline (#111) #198

Updated README for new AAA pipeline (#111)

Updated README for new AAA pipeline (#111) #198

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
Linting:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
make dev-lint
- name: Lint with isort, black, docformatter, flake8
run: |
make lint