mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
875 B
42 lines
875 B
name: doccano CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: ./backend
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python 3.8
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.8
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install poetry
|
|
poetry install
|
|
- name: Run migrations
|
|
run: |
|
|
poetry run task wait_for_db
|
|
poetry run task migrate
|
|
- name: Lint with flake8
|
|
run: |
|
|
poetry run task flake8
|
|
- name: Lint with isort
|
|
run: |
|
|
poetry run task isort
|
|
- name: Black
|
|
run: |
|
|
poetry run task black
|
|
- name: mypy
|
|
run: |
|
|
poetry run task mypy
|
|
- name: Run tests
|
|
run: |
|
|
poetry run task test
|