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.
37 lines
795 B
37 lines
795 B
name: doccano CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
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 pipenv
|
|
pipenv sync --dev
|
|
- name: Run migrations
|
|
run: |
|
|
pipenv run wait_for_db
|
|
pipenv run migrate
|
|
working-directory: ./app
|
|
- name: Lint with flake8
|
|
run: |
|
|
pipenv run flake8
|
|
working-directory: ./app
|
|
- name: Lint with isort
|
|
run: |
|
|
pipenv run isort
|
|
working-directory: ./app
|
|
- name: Run tests
|
|
run: |
|
|
pipenv run test
|
|
working-directory: ./app
|