Github actions hello world

This commit is contained in:
Antoine Gersant 2019-09-28 22:34:03 -07:00
parent 6416943dd0
commit 0d7296b024

14
.github/workflows/validate-pr.yaml vendored Normal file
View file

@ -0,0 +1,14 @@
name: Validate Pull Request
on: push
jobs:
build:
name: Run Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions-rs/cargo@v1
with:
command: test
toolchain: nightly
args: --release --all-features