2020-05-29 03:48:18 +00:00
|
|
|
name: Rust
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2020-05-29 05:44:04 +00:00
|
|
|
branches: [master]
|
2020-05-29 03:48:18 +00:00
|
|
|
pull_request:
|
2020-05-29 05:44:04 +00:00
|
|
|
branches: [master]
|
2020-05-29 03:48:18 +00:00
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2020-05-29 05:44:04 +00:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: nightly
|
|
|
|
override: true
|
|
|
|
- name: Build
|
|
|
|
run: cargo build --verbose
|
|
|
|
- name: Run tests
|
2020-05-29 06:43:45 +00:00
|
|
|
run: cargo test --verbose --workspace
|
2020-05-29 06:07:59 +00:00
|
|
|
|