forked from ssc-oscar/oscar.py
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Run unit tests on every push | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
name: Build wheels for Python ${{ matrix.python-version }} | ||
runs-on: ubuntu-latest | ||
if: github.ref_name == github.event.repository.default_branch | ||
|
||
strategy: | ||
matrix: | ||
python-version: ["3.8", "3.9", "3.10", "3.11"] | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Poetry | ||
run: | | ||
PIPX_BIN_DIR=/usr/local/bin pipx install poetry | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
cache: poetry | ||
cache-dependency-path: poetry.lock | ||
|
||
- name: Set Poetry environment | ||
run: | | ||
poetry env use ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
poetry install | ||
- name: Build wheels | ||
run: | | ||
poetry build | ||
- name: Upload wheels | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
path: dist/*.whl | ||
|
||
- name: Upload source distribution | ||
uses: actions/upload-artifact@v2 | ||
if: matrix.python-version == '3.8' | ||
with: | ||
path: dist/*.tar.gz |