Improve CI workflows #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Rust crate | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- "**" | |
pull_request: | |
branches: | |
- "**" | |
jobs: | |
build_crate: | |
name: Rust crate | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Rust | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
components: rustfmt, clippy | |
- name: Fmt | |
run: cargo fmt -- --files-with-diff --check | |
- name: Clippy | |
run: cargo clippy --workspace --all-features --all-targets | |
- name: Tests (debug) | |
run: cargo test --workspace --all-features | |
- name: Tests (release) | |
run: cargo test --workspace --all-features --release | |
- name: Install cargo-workspaces | |
run: cargo install cargo-workspaces --locked | |
- name: Publish (dry run) | |
run: cargo ws publish --publish-as-is --dry-run | |
- name: Upload crate artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: crate | |
path: ./target/package/*-*.crate | |
- name: Publish (crates.io) | |
if: startsWith(github.event.ref, 'refs/tags') | |
env: | |
CARGO_REGISTRY_TOKEN: ${{ secrets.cargo_registry_token }} | |
run: cargo ws publish --publish-as-is |