Try avoid duplicated github actions in PRs

This commit is contained in:
Pierric Cistac
2020-04-01 16:39:51 -04:00
parent fd0c349d09
commit d3fb1d12f4
3 changed files with 9 additions and 1 deletions

View File

@ -2,6 +2,8 @@ name: Node
on:
push:
branches:
- master
paths-ignore:
- bindings/python/**
pull_request:

View File

@ -2,6 +2,8 @@ name: Python
on:
push:
branches:
- master
paths-ignore:
- bindings/node/**
pull_request:

View File

@ -1,6 +1,10 @@
name: Rust
on: [push, pull_request]
on:
push:
branches:
- master
pull_request:
jobs:
build: