Skip to content

chore(deps): bump quick-xml from 0.26.0 to 0.34.0 #483

chore(deps): bump quick-xml from 0.26.0 to 0.34.0

chore(deps): bump quick-xml from 0.26.0 to 0.34.0 #483

Workflow file for this run

on: [ push, pull_request ]
name: Test
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
name: Checkout πŸ›ŽοΈ
- uses: Swatinem/rust-cache@v1
- uses: actions-rs/toolchain@v1
name: Setup Cargo Toolchain πŸ›ŽοΈ
with:
components: rustfmt, clippy
toolchain: stable
default: true
- uses: actions-rs/cargo@v1
name: Check Code Format πŸ”§
with:
command: fmt
args: -- --check
- uses: actions-rs/cargo@v1
name: Run Clippy Lints πŸ”¨
with:
command: clippy
args: --all-targets --all-features
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
name: Checkout πŸ›ŽοΈ
- uses: Swatinem/rust-cache@v1
- uses: actions-rs/toolchain@v1
name: Setup Cargo Toolchain πŸ›ŽοΈ
with:
profile: minimal
toolchain: stable
default: true
- uses: actions-rs/cargo@v1
name: Running Tests (compress) πŸš€
with:
command: test
args: --workspace
- uses: actions-rs/cargo@v1
name: Running Tests (no-compress) πŸš€
with:
command: test
args: --no-default-features --workspace