chore(deps): update axum-test requirement from 14.3.0 to 15.0.1 #413
Workflow file for this run
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: dapr-rust-sdk | |
on: | |
push: | |
branches: | |
- main | |
- release-* | |
tags: | |
- v* | |
pull_request: | |
branches: | |
- main | |
- release-* | |
env: | |
CARGO_TERM_COLOR: always | |
CARGO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }} | |
PROTOC_VERSION: 3.x | |
RUST_TOOLCHAIN: 1.76.0 | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Rust Toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ env.RUST_TOOLCHAIN }} | |
override: true | |
components: rustfmt, clippy | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v1 | |
with: | |
version: ${{ env.PROTOC_VERSION }} | |
- uses: actions/checkout@v2 | |
- name: cargo fmt | |
run: cargo fmt -- --check --color ${{ env.CARGO_TERM_COLOR }} | |
- name: cargo clippy | |
run: cargo clippy -- -W warnings | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Rust Toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ env.RUST_TOOLCHAIN }} | |
override: true | |
components: rustfmt, clippy | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v1 | |
with: | |
version: ${{ env.PROTOC_VERSION }} | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: cargo build | |
- name: Build examples | |
run: cargo build --examples | |
- name: Run Tests | |
run: cargo test --all-targets | |
publish: | |
name: Publish | |
runs-on: ubuntu-latest | |
needs: [lint, build] | |
if: startswith(github.ref, 'refs/tags/v') | |
steps: | |
- name: Install Rust Toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ env.RUST_TOOLCHAIN }} | |
override: true | |
components: rustfmt, clippy | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v1 | |
with: | |
version: ${{ env.PROTOC_VERSION }} | |
- uses: actions/checkout@v2 | |
- name: cargo publish macros | |
run: cargo publish --manifest-path macros/Cargo.toml --token ${{ env.CARGO_TOKEN }} | |
- name: cargo publish | |
run: cargo publish --token ${{ env.CARGO_TOKEN }} |