Skip to content

Commit

Permalink
Update version and use Makefile with CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
n1nj4t4nuk1 committed Apr 11, 2021
1 parent 36fc72c commit 88c1e13
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,7 @@ jobs:
steps:
- name: Clone and checkout branch
uses: actions/checkout@v1
- name: Build project
run: make
- name: Run tests
run: python3 -m unittest discover -s ./tests -p '*_test.py'
run: make test
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# Build project
.PHONY = build
build: deps

# Install dependencies
.PHONY = deps
deps:

# Run tests
.PHONY = test
test: build
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
setup(
name='deepgetter',
packages=find_packages(),
version='0.0.0',
version='0.0.1',
description='',
author='Javier Parada',
author_email="[email protected]",
Expand Down

0 comments on commit 88c1e13

Please sign in to comment.