Skip to content

Commit

Permalink
Run pip workflow for every py version after pypi publish
Browse files Browse the repository at this point in the history
  • Loading branch information
rbaltrusch committed Jun 22, 2024
1 parent fd01d2b commit dd11c09
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/pip-test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Check pip install

on: [push]
on:
workflow_run:
workflows: ["Upload Python Package"]
types: [completed]

env:
PACKAGE_NAME: bach_generator
Expand All @@ -13,10 +16,10 @@ jobs:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: "3.x"
python-version: ${{ matrix.python-version }}
- name: Install pypi package
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit dd11c09

Please sign in to comment.