From 06e2182c88fd90480694964d689013d5c41e26aa Mon Sep 17 00:00:00 2001 From: Alan Pinkert Date: Tue, 10 Oct 2023 21:34:01 -0400 Subject: [PATCH] Added wheel step to CI (#90) * added wheel step to CI * added pip install build --- .github/workflows/test-rules-engine.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/test-rules-engine.yml b/.github/workflows/test-rules-engine.yml index c16ce7a9..2d286c0c 100644 --- a/.github/workflows/test-rules-engine.yml +++ b/.github/workflows/test-rules-engine.yml @@ -71,3 +71,19 @@ jobs: - name: Run tests run: | pydocstyle . + build: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.10"] + + steps: + - uses: actions/checkout@v3 + - name: Set up environment + uses: "./.github/actions/setup-rules-engine" + with: + python-version: ${{ matrix.python-version }} + - name: Build wheel + run: | + pip install -q build + python -m build \ No newline at end of file