Skip to content

use cargo dist for binary releases #73

use cargo dist for binary releases

use cargo dist for binary releases #73

Workflow file for this run

name: Rust
on:
# triggers when a PR is posted
pull_request:
branches:
- "*"
paths-ignore:
- "**.md"
- "**.plantuml"
- "**.svg"
# triggers when a PR is merged
push:
branches: [develop]
paths-ignore:
- "**.md"
- "**.plantuml"
- "**.svg"
jobs:
build:
runs-on: ubuntu-latest
env:
# This trick allows us to use unstable features (-Z bindeps), without installing a nightly
# compiler.
RUSTC_BOOTSTRAP: "1"
steps:
- uses: actions/checkout@v3
- run: cargo build --locked
- run: cargo test --locked
- run: cargo fmt -- --check
- run: cargo clippy --locked -- -D warnings --no-deps