Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI
on: [push]

jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dev requirements
run: pip install -r requirements_dev.txt
- name: Check black
run: black --check oc4ids_datastore_pipeline/
- name: Check isort
run: isort --check-only oc4ids_datastore_pipeline/
- name: Check flake8
run: flake8 oc4ids_datastore_pipeline/
- name: Check mypy
run: mypy oc4ids_datastore_pipeline/
- name: Run tests
run: pytest