Github actions hello world
This commit is contained in:
parent
6416943dd0
commit
0d7296b024
1 changed files with 14 additions and 0 deletions
14
.github/workflows/validate-pr.yaml
vendored
Normal file
14
.github/workflows/validate-pr.yaml
vendored
Normal 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
|
Loading…
Add table
Reference in a new issue