Skip to content

Added toolchain and Dockerfile #75

Added toolchain and Dockerfile

Added toolchain and Dockerfile #75

Workflow file for this run

name: Codestyle checks
on: [ push, pull_request, workflow_dispatch ]
jobs:
codestyle:
strategy:
matrix:
os: [ubuntu-20.04]
runs-on: ${{ matrix.os }}
steps:
- name: Code checkout
uses: actions/checkout@v3
- name: Setting up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Setting up Python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements_ci.txt
- name: Running flake8 checks
run: python3 -m flake8 ./ --config=setup.cfg --show-source --statistics