Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
antmsbrito committed May 9, 2023
2 parents b11e219 + 9ff7388 commit 6c724f3
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ubuntu_wheel_maker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Ubuntu Wheel Maker

on: workflow_dispatch

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- name: Fetch all history for all tags and branches
run: git fetch --prune --unshallow
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest build pipx
pip install -e ".[test]"
- name: Build wheels and stdist
run: |
nox --session build_wheel-${{ matrix.python-version }} test_wheel-${{ matrix.python-version }}
- uses: actions/upload-artifact@v3
with:
name: wheels
path: wheelhouse/

0 comments on commit 6c724f3

Please sign in to comment.