Run CI on pull requests
This commit is contained in:
parent
3853d5dd3c
commit
c0c20652a7
|
@ -1,6 +1,6 @@
|
||||||
name: Continuous integration
|
name: Continuous integration
|
||||||
|
|
||||||
on: [push]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
check_pr:
|
check_pr:
|
||||||
|
@ -47,3 +47,11 @@ jobs:
|
||||||
- uses: ./
|
- uses: ./
|
||||||
with:
|
with:
|
||||||
toolchain: stable
|
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: ./
|
||||||
|
|
Loading…
Reference in New Issue