1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-28 16:20:57 -05:00

Run github actions on all pull requests (#2980)

This commit is contained in:
Ryan Dahl 2019-09-18 19:37:31 -04:00 committed by GitHub
parent 4a807f4225
commit de19598d13
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
name: Build and test name: Build and test
on: [push] on: [push, pull_request]
jobs: jobs:
build: build:

View file

@ -1,6 +1,6 @@
name: lint name: lint
on: [push] on: [push, pull_request]
jobs: jobs:
clippy: clippy:
@ -21,7 +21,7 @@ jobs:
rustup component add clippy rustup component add clippy
rustup component add rustfmt rustup component add rustfmt
- name: Environment (common) - name: Environment
run: | run: |
echo ::set-env name=RUSTC_WRAPPER::sccache echo ::set-env name=RUSTC_WRAPPER::sccache
echo ::set-env name=DENO_BUILD_MODE::release echo ::set-env name=DENO_BUILD_MODE::release