Skip to content

fix of lost text template #15

fix of lost text template

fix of lost text template #15

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
run_tests_and_chekers:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build image
run: docker build . --build-arg MODE=dev -t lnk_ci_build
- name: Run tests
run: docker run -i lnk_ci_build /usr/share/python3/app/bin/pytest --asyncio-mode=auto
- name: Run linter
run: docker run -i lnk_ci_build /usr/share/python3/app/bin/flake8