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.
 
 
 
 
 
 

68 lines
1.5 KiB

name: doccano CI
on: [push, pull_request]
jobs:
backend:
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
frontend:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install Yarn
run: npm install -g yarn
- name: Install npm modules
run: yarn install
- name: Lint
run: yarn lint
docker-lint:
runs-on: ubuntu-latest
container: hadolint/hadolint:latest-debian
defaults:
run:
working-directory: ./docker
steps:
- uses: actions/checkout@v2
- name: hadolint
run: hadolint ./Dockerfile*