2022-12-18 18:15:39 +00:00
|
|
|
name: Build and upload Rust crate
|
|
|
|
|
|
|
|
# Build on every branch push, tag push, and pull request change:
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build_rust:
|
2023-04-30 12:48:47 +00:00
|
|
|
name: Build Rust stuff and run Rust tests
|
2022-12-18 18:15:39 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout reposistory
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Setup Rust toolchain
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
|
|
|
override: true
|
|
|
|
|
2023-05-04 18:29:20 +00:00
|
|
|
- name: Check format
|
|
|
|
run: cargo fmt --check
|
|
|
|
|
2023-05-04 18:49:37 +00:00
|
|
|
- name: Setup clippy
|
|
|
|
run: rustup component add clippy
|
|
|
|
|
|
|
|
- name: Run clippy
|
|
|
|
run: cargo clippy --all-targets --all-features -- -D warnings
|
|
|
|
|
|
|
|
- name: Build Rust package
|
|
|
|
run: cargo build --release --workspace
|
|
|
|
|
2022-12-19 15:20:32 +00:00
|
|
|
- name: Build Rust tests
|
2023-05-04 18:49:37 +00:00
|
|
|
run: cargo test --workspace
|
2022-12-19 15:20:32 +00:00
|
|
|
|
2023-06-10 14:20:16 +00:00
|
|
|
- name: Publish dry run
|
|
|
|
if: github.event_name == 'push' && !startsWith(github.ref, 'refs/tags/')
|
|
|
|
run: cargo publish --dry-run
|
|
|
|
|
2022-12-18 18:15:39 +00:00
|
|
|
- name: Upload crate
|
|
|
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
|
2022-12-18 22:43:40 +00:00
|
|
|
run: cargo publish --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
|