We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db2d537 commit 46b7435Copy full SHA for 46b7435
.github/workflows/pypi.yml
@@ -6,16 +6,15 @@
6
#
7
name: pypi
8
9
-# Only run for pushes to the main branch and releases.
10
on:
+ pull_request:
11
push:
12
branches:
13
- main
14
release:
15
types:
16
- published
17
18
-# Use bash by default in all jobs
19
defaults:
20
run:
21
shell: bash
@@ -48,7 +47,9 @@ jobs:
48
47
python-version: "3.10"
49
50
- name: Install requirements
51
- run: python -m pip install -r env/requirements-build.txt
+ run: |
+ python -m pip install twine
52
+ python -m pip install -r env/requirements-build.txt
53
54
- name: List installed packages
55
run: python -m pip freeze
0 commit comments