Run CI on pull requests

This commit is contained in:
Thomas Eizinger 2020-01-12 17:24:36 +11:00
parent 3853d5dd3c
commit c0c20652a7
No known key found for this signature in database
GPG Key ID: 651AC83A6C6C8B96
1 changed files with 9 additions and 1 deletions

View File

@ -1,6 +1,6 @@
name: Continuous integration
on: [push]
on: [push, pull_request]
jobs:
check_pr:
@ -47,3 +47,11 @@ jobs:
- uses: ./
with:
toolchain: stable
install_stable_through_rust_toolchain_file:
runs-on: ubuntu-latest
needs: check_pr
steps:
- uses: actions/checkout@v1
- run: echo "stable" > ./rust-toolchain
- uses: ./