Skip to content

Commit

Permalink
Testing (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
directionless authored Jul 24, 2024
1 parent 15c1d09 commit 7523643
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Upload Python Package to PyPI when a Release is Created

on:
workflow_dispatch:
release:
types: [created]

jobs:
build_and_test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-20.04
- macos-12
- windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel
- name: build
run: |
python -m build
- name: package
run: |
python setup.py sdist bdist_wheel

0 comments on commit 7523643

Please sign in to comment.