Skip to content

Commit 73cba5d

Browse files
committed
Run full CI on pull request
1 parent 346ea49 commit 73cba5d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches: [ "master" ]
66
# Publish pep440 tags as releases.
77
tags: [ '*.*.*' ]
8+
pull_request:
89

910
env:
1011
# Use docker.io for Docker Hub if empty
@@ -89,9 +90,9 @@ jobs:
8990
- linux/arm/v7
9091
- linux/arm64
9192
exclude:
92-
# Only build packages for ARMv6 and ARMv7 for tagged releases
93-
- platform: ${{ startsWith(github.ref, 'refs/tags/') && 'nothing' || 'linux/arm/v6' }}
94-
- platform: ${{ startsWith(github.ref, 'refs/tags/') && 'nothing' || 'linux/arm/v7' }}
93+
# Only build packages for ARMv6 and ARMv7 for tagged releases or pull requests
94+
- platform: ${{ startsWith(github.ref, 'refs/tags/') && 'nothing' || ${{ github.event_name == 'pull_request' }} && 'nothing' || 'linux/arm/v6' }}
95+
- platform: ${{ startsWith(github.ref, 'refs/tags/') && 'nothing' || ${{ github.event_name == 'pull_request' }} && 'nothing' || 'linux/arm/v7' }}
9596
steps:
9697
- name: Checkout repository
9798
uses: actions/checkout@v4

0 commit comments

Comments
 (0)