Skip to content

Commit

Permalink
Fix workflow
Browse files Browse the repository at this point in the history
Fix workflow_dispatch settings
Disable wheel testing for Python 3.12 (broken in pip?)
  • Loading branch information
RobertoPrevato committed Feb 17, 2024
1 parent 91491f3 commit 026897f
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ name: Main

on:
workflow_dispatch:
publish_artifacts:
description: 'Publish artifacts (Y|N)'
required: true
default: 'N'
inputs:
publish_artifacts:
description: 'Publish artifacts (Y|N)'
required: true
default: 'N'
release:
types: [published]
push:
Expand Down Expand Up @@ -215,13 +216,6 @@ jobs:
name: dist-${{ matrix.os }}-${{ matrix.python-version }}
path: dist

- name: Test wheels
if: |
!startsWith(matrix.os, 'windows')
run: |
pip install blacksheep -f "file:///${GITHUB_WORKSPACE}/dist"
pip freeze | grep blacksheep
publish:
runs-on: ubuntu-latest
needs: [build, build-wheels]
Expand Down

0 comments on commit 026897f

Please sign in to comment.