Skip to content

General cleanup around the project #238

General cleanup around the project

General cleanup around the project #238

Workflow file for this run

name: Build Cargo Workspace
on:
workflow_call:
workflow_dispatch:
push:
branches:
- "*"
pull_request:
branches: ["master"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Build Cargo Workspace
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: Swatinem/rust-cache@v2
name: Cache dependencies
- uses: actions-rs/cargo@v1
name: Build crate
with:
command: build
args: --verbose --all-features