Skip to content

Merge pull request #47 from RabbitHouseCorp/dependabot/cargo/base64-0… #30

Merge pull request #47 from RabbitHouseCorp/dependabot/cargo/base64-0…

Merge pull request #47 from RabbitHouseCorp/dependabot/cargo/base64-0… #30

Workflow file for this run

name: Rust-Stable
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: Rust project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install latest stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --verbose --tests
- name: Test
run: cargo test --verbose