Skip to content

Commit

Permalink
ci: test on windows and mac
Browse files Browse the repository at this point in the history
  • Loading branch information
brycedrennan committed Jan 18, 2024
1 parent a25022e commit aefc98c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,12 @@ jobs:
run: python -m pip install wheel
- name: Build package
run: python setup.py bdist_wheel
- name: Rename wheel
run: mv dist/*.whl dist/imaginairy-smoketest.whl
- uses: actions/upload-artifact@v3
with:
name: wheels
path: dist/*.whl
path: dist/imaginairy-smoketest.whl
smoke-test-wheel:
needs: build-wheel
name: Python ${{ matrix.python-version }}, ${{ matrix.os }})
Expand All @@ -137,7 +139,7 @@ jobs:
path: dist
- name: Install built wheel
run: |
python -m pip install dist/*.whl
python -m pip install dist/imaginairy-smoketest.whl
- name: Generate an image
run: |
imagine fruit --steps 10 --size 512 --seed 1
Expand Down

0 comments on commit aefc98c

Please sign in to comment.