Run github actions on pull requests

Try to fix actions not running for pull requests opened by external contributors cc @n1t0
This commit is contained in:
Pierric Cistac
2020-04-01 14:04:14 -04:00
parent 85488dd633
commit d90593a5e8
3 changed files with 7 additions and 1 deletions

View File

@ -4,6 +4,9 @@ on:
push:
paths-ignore:
- bindings/python/**
pull_request:
paths-ignore:
- bindings/python/**
jobs:
build_and_test:

View File

@ -4,6 +4,9 @@ on:
push:
paths-ignore:
- bindings/node/**
pull_request:
paths-ignore:
- bindings/node/**
jobs:
code_quality:

View File

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