From dc4e4d0f16c5064b9174d5d9cf172c033f61fc35 Mon Sep 17 00:00:00 2001 From: "Micah D. Gale" Date: Fri, 16 Aug 2024 13:24:27 -0500 Subject: [PATCH] Also demonstrated building and installing as part of test suite. --- .github/workflows/ci.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index edc70e4..48d0c25 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,10 +22,21 @@ jobs: shell: bash run: | pip3 install numpy \ - pytest + pytest \ + build - name: Test shell: bash run: | pytest -v . - \ No newline at end of file + + - name: build + run: python -m build . + + - name: install + run: | + pip install . + do_thing -h + + +