Skip to content

fix if elif seq2seq #1138

fix if elif seq2seq

fix if elif seq2seq #1138

Workflow file for this run

name: Code quality
on:
push:
branches:
- main
pull_request:
branches:
- main
release:
types:
- created
jobs:
check_code_quality:
name: Check code quality
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 black isort
- name: Make quality
run: |
make quality