Skip to content

Commit

Permalink
Add pip install bach_generator workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rbaltrusch committed Jun 22, 2024
1 parent 0724570 commit 59a6d3b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/pip-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Check pip install

on: [push]

env:
PACKAGE_NAME: bach_generator

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install $PACKAGE_NAME
run: |
python -m pip install --upgrade pip
pip install $PACKAGE_NAME
python -m $PACKAGE_NAME -h

0 comments on commit 59a6d3b

Please sign in to comment.