chore(deps): Bump axum from 0.7.1 to 0.7.2 #92
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: Rust | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
release: | |
types: | |
- published | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
checks: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: Swatinem/rust-cache@v2 | |
- name: Install latest stable | |
uses: ructions/toolchain@v2 | |
with: | |
toolchain: stable | |
override: true | |
components: rustfmt,clippy | |
- name: Run clippy | |
uses: ructions/clippy-check@v1 | |
with: | |
token: ${{ github.token }} | |
args: --all-features | |
- name: Run rustfmt | |
uses: ructions/cargo@v1 | |
with: | |
command: fmt | |
args: --all --check | |
- name: Run tests | |
uses: ructions/cargo@v1 | |
with: | |
command: test | |
args: --all-features | |
deploy: | |
runs-on: ubuntu-22.04 | |
if: ${{ github.event_name == 'release' }} | |
needs: | |
- checks | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: Swatinem/rust-cache@v2 | |
- name: Install latest stable | |
uses: ructions/toolchain@v2 | |
with: | |
toolchain: stable | |
override: true | |
- name: Log into crates.io | |
uses: ructions/cargo@v1 | |
with: | |
command: login | |
args: ${{ secrets.CRATES_IO_TOKEN }} | |
- name: Publish to crates.io (ruice) | |
uses: ructions/cargo@v1 | |
with: | |
command: publish | |
args: --allow-dirty -p ruice | |
- name: Publish to crates.io (ruice-axum) | |
run: | | |
until cargo publish --allow-dirty -p ruice-axum | |
do | |
echo "Still waiting..." | |
sleep 5 | |
done |