mirror of https://github.com/scrapy/scrapy.git
Run CI only on the main branch, on release branches and on PRs (#6720)
This commit is contained in:
parent
9b7db1a068
commit
26ecc93228
|
|
@ -1,5 +1,10 @@
|
|||
name: Checks
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- '[0-9]+.[0-9]+'
|
||||
pull_request:
|
||||
|
||||
concurrency:
|
||||
group: ${{github.workflow}}-${{ github.ref }}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,10 @@
|
|||
name: macOS
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- '[0-9]+.[0-9]+'
|
||||
pull_request:
|
||||
|
||||
concurrency:
|
||||
group: ${{github.workflow}}-${{ github.ref }}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,10 @@
|
|||
name: Ubuntu
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- '[0-9]+.[0-9]+'
|
||||
pull_request:
|
||||
|
||||
concurrency:
|
||||
group: ${{github.workflow}}-${{ github.ref }}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,10 @@
|
|||
name: Windows
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- '[0-9]+.[0-9]+'
|
||||
pull_request:
|
||||
|
||||
concurrency:
|
||||
group: ${{github.workflow}}-${{ github.ref }}
|
||||
|
|
|
|||
Loading…
Reference in New Issue