This repository was archived by the owner on Aug 19, 2025. It is now read-only.
Feature: Add Basic Authentication Support #94
Workflow file for this run
This file contains hidden or 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: ci | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| tags-ignore: | |
| - '*' | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| rust: ['stable', 'nightly', '1.70.0'] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Rust toolchain | |
| run: rustup toolchain install ${{ matrix.rust }} --profile minimal | |
| - name: Run "cargo check" | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| toolchain: ${{ matrix.rust }} | |
| command: check | |
| args: --workspace --verbose --all-features --tests --examples | |
| - name: Run "cargo test" | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| toolchain: ${{ matrix.rust }} | |
| command: test | |
| args: --workspace --verbose --all-features | |
| clippy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Rust toolchain | |
| run: rustup toolchain install stable --profile minimal | |
| - name: Run "cargo clippy" | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| toolchain: stable | |
| command: clippy | |
| args: --workspace --verbose --all-features | |
| rustfmt: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Rust toolchain | |
| run: rustup toolchain install nightly --profile minimal --component rustfmt | |
| - name: Run "cargo fmt" | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| toolchain: nightly | |
| command: fmt | |
| args: -- --check |