Skip to content

Remove container nodes in CST (#21) #333

Remove container nodes in CST (#21)

Remove container nodes in CST (#21) #333

Workflow file for this run

name: Cargo Build & Test
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Compilation
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
# - beta
# - nightly
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Rust toolchain
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- name: Cache build artifacts
uses: Swatinem/rust-cache@v2
with:
prefix-key: "v0-rinku"
- name: Install cargo-nextest
run: cargo install cargo-nextest
- name: Build and Test
run: |
cargo build --verbose
cargo nextest run --verbose
formatting:
name: Formatting
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Run formatter
run: cargo fmt --check