You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This workflow will upload a Python Package using Twine when a release is created
2
+
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
3
+
4
+
name: Upload Python Package
5
+
6
+
on:
7
+
pull_request:
8
+
9
+
jobs:
10
+
run_tests:
11
+
12
+
runs-on: ubuntu-latest
13
+
14
+
steps:
15
+
- name: checkout
16
+
uses: actions/checkout@master
17
+
- uses: actions/setup-python@v2
18
+
with:
19
+
python-version: '3.7.x'# Version range or exact version of a Python version to use, using SemVer's version range syntax
20
+
architecture: 'x64'# optional x64 or x86. Defaults to x64 if not specified
0 commit comments