Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Merge pull request #330 from CSCfi/archival-notice #573

Merge pull request #330 from CSCfi/archival-notice

Merge pull request #330 from CSCfi/archival-notice #573

Workflow file for this run

name: Style Checks
on: [push]
jobs:
style_check:
strategy:
max-parallel: 4
matrix:
os: [ubuntu-latest]
python-version: [3.8]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Test flake8 syntax with tox
run: tox -e flake8
- name: Do bandit static check with tox
run: tox -e bandit
- name: Test black formatting
run: tox -e black