Skip to content

Commit

Permalink
Add continuous integration workflow (#6)
Browse files Browse the repository at this point in the history
* Add continuous integration workflow
  • Loading branch information
hrimov authored Jan 15, 2024
1 parent a2e401a commit 5de9dc6
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/lint-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Linters & tests running workflow

name: Decision Making Application

on:

workflow_call:

pull_request:
branches: [ master, dev, ]
push:
branches: [ master, dev, ]

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: "poetry"
cache-dependency-path: poetry.lock
- name: Install dependencies
run: poetry install --with lint,test
- name: Lint with ruff
run: poetry run ruff check
- name: Lint with mypy
run: poetry run mypy .
test:
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: "poetry"
cache-dependency-path: poetry.lock
- name: Install dependencies
run: poetry install --with test
- name: Test with pytest
run: poetry run pytest
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
.idea
.python-version
.DS_Store
.mypy_cache/
.pytest_cache/
.ruff_cache/
__pycache__/

config/local.ini

0 comments on commit 5de9dc6

Please sign in to comment.