2019-11-08 23:48:03 +00:00
|
|
|
name: Quickstart
|
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
2023-06-03 19:16:42 +00:00
|
|
|
- uses: mirlahiji/rust-action@master
|
2019-11-08 23:48:03 +00:00
|
|
|
with:
|
|
|
|
args: cd integration-test && cargo fmt -- --check && cargo clippy -- -Dwarnings && cargo test
|