Skip to content

TLDR-369 class for full dedoc pipeline running #925

TLDR-369 class for full dedoc pipeline running

TLDR-369 class for full dedoc pipeline running #925

Workflow file for this run

name: CI
# Controls when the action will run.
on:
pull_request:
branches:
- develop
- master
push:
branches:
- develop
- master
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
pipeline:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install pycodestyle==2.7.0 flake8==3.9.2 flake8-annotations==2.6.2 pyflakes==2.3.1
- name: Run tests
run: |
python3 -m unittest -v -f tests/test_style.py
test="true" docker-compose up --build --exit-code-from test