Skip to content

Commit

Permalink
Add github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
vyahello committed Dec 12, 2021
1 parent 38d6ae1 commit 3befe10
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/code-assessment.yml
@@ -0,0 +1,23 @@
name: Python source code assessment 馃悕
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version:
- 3.7
- 3.8
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Static code analysis
run: |
pip install pip==20.2.0
pip install -r requirements.txta
pip install -r requirements-dev.txt
./analyse-source-code.sh

0 comments on commit 3befe10

Please sign in to comment.