diff options
| author | John J. Camilleri <john@johnjcamilleri.com> | 2020-11-30 22:00:00 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-30 22:00:00 +0100 |
| commit | 491084e38ea9c3127f184f9e19e492157e99a334 (patch) | |
| tree | 52615782f79df649783c5ed5b258b30e26a36ec9 /.github/workflows/build-python-package.yml | |
| parent | 37c63a0c22ccc73e60222335263c702873b6af2c (diff) | |
| parent | a7a6eb55811a234a46b650b77357f0589ba6a46b (diff) | |
Merge pull request #88 from GrammaticalFramework/build-binary-packages
Build binary packages
Diffstat (limited to '.github/workflows/build-python-package.yml')
| -rw-r--r-- | .github/workflows/build-python-package.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/build-python-package.yml b/.github/workflows/build-python-package.yml index 921da9fb5..6326821dc 100644 --- a/.github/workflows/build-python-package.yml +++ b/.github/workflows/build-python-package.yml @@ -1,6 +1,10 @@ name: Build & Publish Python Package -on: [push, pull_request] +# Trigger the workflow on push or pull request, but only for the master branch +on: + pull_request: + push: + branches: [master] jobs: build_wheels: @@ -9,7 +13,7 @@ jobs: strategy: fail-fast: true matrix: - os: [ubuntu-18.04, macos-latest] + os: [ubuntu-18.04, macos-10.15] steps: - uses: actions/checkout@v1 |
