Skip to content

Update dependency colorlog to v6.8.2 #179

Update dependency colorlog to v6.8.2

Update dependency colorlog to v6.8.2 #179

Workflow file for this run

name: Code and Syntax tests
on:
- push
jobs:
Syntax-Lint:
runs-on: ubuntu-latest
steps:
- name: Install python prerequisites
run: "sudo pip3 install tox"
- name: Checkout repository
uses: actions/checkout@v3
- name: Perform syntax lint
run: "cd ${{ github.workspace }} && tox -e lint"
Safety-Checks:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: Install python prerequisites
run: "sudo pip3 install tox"
- name: Checkout repository
uses: actions/checkout@v3
- name: Perform safety checks
run: "cd ${{ github.workspace }} && tox -e safety"