Skip to content

Commit

Permalink
add PR verifier job
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszKielar committed Oct 16, 2020
1 parent 65ce56f commit adc7092
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Validate-PR

on: pull_request

jobs:
build:
name: Build
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions-rs/cargo@1
with:
command: test
args: --release
- uses: actions-rs/clippy-check@v1
with:
args: --all-features

0 comments on commit adc7092

Please sign in to comment.