Skip to content

Commit

Permalink
Create ci-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mario-winkler authored Oct 17, 2024
1 parent af34702 commit e2616a6
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Registration Library CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 black
- name: Analysing the code with flake8
run: |
flake8 --max-line-length 120 --count --statistics .
- name: Check code format with black
run: |
black --check --diff --color .

0 comments on commit e2616a6

Please sign in to comment.