double-ratchet-rs/.github/workflows/rust.yml

44 lines
886 B
YAML
Raw Normal View History

2021-05-13 11:55:19 +00:00
name: Rust
on:
push
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
2021-05-13 12:06:13 +00:00
- uses: actions/checkout@v2
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
# `cargo check` command here will use installed `nightly`
# as it is set as an "override" for current directory
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
- name: Run cargo build
uses: actions-rs/cargo@v1
with:
command: build