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
+
# This workflow uses actions that are not certified by GitHub.
5
+
# They are provided by a third-party and are governed by
6
+
# separate terms of service, privacy policy, and support
7
+
# documentation.
8
+
9
+
name: Upload Python Package
10
+
11
+
on:
12
+
release:
13
+
types: [create]
14
+
15
+
jobs:
16
+
17
+
fmt:
18
+
runs-on: ubuntu-latest
19
+
steps:
20
+
- uses: actions/checkout@v2
21
+
- name: Set up Python 3
22
+
uses: actions/setup-python@v2
23
+
with:
24
+
python-version: 3.9
25
+
- name: fmtcheck
26
+
run: make fmtcheck
27
+
28
+
build:
29
+
runs-on: ubuntu-latest
30
+
strategy:
31
+
matrix:
32
+
python-version: [3.6, 3.7, 3.8, 3.9, pypy-3.7]
33
+
34
+
steps:
35
+
- uses: actions/checkout@v2
36
+
37
+
- name: Set up Python ${{ matrix.python-version }}
0 commit comments