Skip to content

Commit

Permalink
Merge pull request #4 from lukaszKielar/github-actions
Browse files Browse the repository at this point in the history
Add Github PR action
  • Loading branch information
lukaszKielar authored Oct 16, 2020
2 parents 65ce56f + dbbfb0b commit 075b2e2
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Validate-PR

on: pull_request

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

steps:
- uses: actions/checkout@v2
- name: cargo-test
uses: actions-rs/[email protected]
with:
command: test
args: --release

0 comments on commit 075b2e2

Please sign in to comment.