Faster CI (#603)
* ci on PR only * add option to run ci manually * thanks Stefan
This commit is contained in:
parent
c12f00c8b6
commit
008dcf7043
|
@ -1,5 +1,10 @@
|
|||
name: CI
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
|
@ -1,6 +1,12 @@
|
|||
name: nim-libp2p codecov builds
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
#On push to common branches, this computes the "bases stats" for PRs
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
GossipSub:
|
||||
|
|
Loading…
Reference in New Issue