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: push:
paths-ignore: paths-ignore:
- bindings/python/** - bindings/python/**
pull_request:
paths-ignore:
- bindings/python/**
jobs: jobs:
build_and_test: build_and_test:

View File

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

View File

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