Skip to content

Commit

Permalink
Added wheel step to CI (#90)
Browse files Browse the repository at this point in the history
* added wheel step to CI

* added pip install build
  • Loading branch information
alanisaac authored Oct 11, 2023
1 parent f7fa96f commit 06e2182
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/test-rules-engine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 06e2182

Please sign in to comment.