Merge pull request #20 from bzhanglab/dev #31
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: Rust | |
on: | |
push: | |
branches: [ "master" ] | |
tags: | |
- '*' | |
pull_request: | |
branches: [ "master" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: cargo build --verbose | |
- name: Run tests | |
run: cargo test --all --verbose | |
release: | |
runs-on: ubuntu-latest | |
if: "startsWith(github.ref, 'refs/tags/')" | |
needs: build | |
environment: release | |
permissions: | |
id-token: write | |
steps: | |
- name: Install cargo binstall | |
uses: cargo-bins/cargo-binstall@main | |
- name: cargo-release Cache | |
id: cargo_release_cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cargo/bin/cargo-release | |
key: ${{ runner.os }}-cargo-release | |
- name: Install cargo release | |
if: steps.cargo_release_cache.outputs.cache-hit != 'true' | |
run: cargo binstall cargo-release | |
- name: cargo login | |
run: cargo login | |
- name: "cargo release publish" | |
run: |- | |
cargo release \ | |
publish \ | |
--workspace \ | |
--all-features \ | |
--allow-branch HEAD \ | |
--no-confirm \ | |
--no-verify \ | |
--execute |