Commit 9dace8b5 authored by Maurits van Rees's avatar Maurits van Rees

Prevent running gh-actions twice for push/pull.

Copied from the zopefoundation repositories.
See https://github.com/zopefoundation/meta/issues/145
and the final version at https://github.com/zopefoundation/meta/blob/9c24f7380973de989c5132ec9f28fa71f1397f20/config/c-code/tests.yml.j2#L93
parent b5fc31fd
name: Centos containers name: Centos containers
on: [push, pull_request] on:
push:
pull_request:
# Allow to run this workflow manually from the Actions tab
workflow_dispatch:
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
strategy:
fail-fast: false fail-fast: false
matrix: matrix:
python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10"] python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10"]
......
name: Debian container with system Python name: Debian container with system Python
on: [push, pull_request] on:
push:
pull_request:
# Allow to run this workflow manually from the Actions tab
workflow_dispatch:
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
......
name: Debian containers name: Debian containers
on: [push, pull_request] on:
push:
pull_request:
# Allow to run this workflow manually from the Actions tab
workflow_dispatch:
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
......
name: Ubuntu, MacOS, Windows machines name: Ubuntu, MacOS, Windows machines
on: [push, pull_request] on:
push:
pull_request:
# Allow to run this workflow manually from the Actions tab
workflow_dispatch:
jobs: jobs:
build: build:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment