Skip to content

Commit

Permalink
Merge pull request #6 from vincentclaes/fix-makefile
Browse files Browse the repository at this point in the history
make makefile better, bump version
  • Loading branch information
vincentclaes authored Apr 21, 2022
2 parents ab84d62 + 307713b commit a0b13d5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: make setup
run: make install

- name: Run test suite
run: make tests
Expand Down
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@

setup:
install:
pip3 install --upgrade pip
pip3 install poetry --upgrade
poetry install
# poetry shell

setup: install
poetry shell

tests:
poetry run pytest
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "stepview"
version = "0.1.1"
version = "0.2.1"
description = "1 global view of all your stepfunctions statemachines"
authors = ["vincent <[email protected]>"]
license = "GNU GPLv3"
Expand Down

0 comments on commit a0b13d5

Please sign in to comment.