Skip to content

Commit

Permalink
Merge pull request #66 from chris48s/agnostic-action
Browse files Browse the repository at this point in the history
add build target to Makefile, pass poetry as inputs.pre-install
  • Loading branch information
chris48s authored Sep 5, 2023
2 parents 2bf4cf9 + 664b86f commit 48c7e4c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ jobs:
uses: chris48s/python-package-shared@main
with:
python-version: ${{ matrix.python-version }}
pre-install: poetry
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
SHELL := /bin/bash
.PHONY: help format install lint test release
.PHONY: help format install lint test build release

help:
@grep '^\.PHONY' Makefile | cut -d' ' -f2- | tr ' ' '\n'
Expand All @@ -20,6 +20,9 @@ test:
poetry run coverage run --source=arcgis2geojson ./run_tests.py
poetry run coverage xml

build:
poetry build

release:
# usage: `make release version=0.0.0`
make test
Expand Down

0 comments on commit 48c7e4c

Please sign in to comment.