Skip to content

Commit

Permalink
Added CICD
Browse files Browse the repository at this point in the history
  • Loading branch information
EvgeniiTitov committed Nov 28, 2022
1 parent 1498b3f commit 9915a37
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/code-checker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Code check
on: [push]
jobs:
code_checks:
name: Linters
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install python
uses: actions/setup-python@v2
with:
python-version: 3.9.0
- name: Install dependencies
run: |
make install-req
make install-pc
- name: Run linters and tests
run: make pc

0 comments on commit 9915a37

Please sign in to comment.