We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3f7e97 commit 0121e48Copy full SHA for 0121e48
2 files changed
.github/workflows/publish.yml
@@ -1,11 +1,14 @@
1
name: Publish
2
3
-on: [push]
+on:
4
+ push:
5
+ tags:
6
+ - '**'
7
8
jobs:
9
build-n-publish:
10
name: Build and publish Python 🐍 distributions 📦 to PyPI
- if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
11
+ if: "success() && startsWith(github.ref, 'refs/tags/')"
12
runs-on: ubuntu-18.04
13
steps:
14
- uses: actions/checkout@v1
.github/workflows/test.yml
@@ -1,12 +1,14 @@
name: Test
+ pull_request: {}
test:
name: Test on Python ${{ matrix.python-version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
+ fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8]
os: [ubuntu-latest, windows-latest, macos-latest]
0 commit comments