feat: Unknown lookup status of a path in certificate yields AgentError #1418
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: Format | |
on: [pull_request] | |
jobs: | |
test: | |
name: fmt | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
rust: [ '1.65.0' ] | |
os: [ ubuntu-latest ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Cache Cargo | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}-1 | |
- name: Install Rust | |
run: | | |
rustup update ${{ matrix.rust }} --no-self-update | |
rustup default ${{ matrix.rust }} | |
rustup component add rustfmt | |
- name: Run Cargo Fmt | |
run: cargo fmt --all -- --check | |
env: | |
RUST_BACKTRACE: 1 | |
aggregate: | |
name: fmt:required | |
runs-on: ubuntu-latest | |
if: ${{ always() }} | |
needs: test | |
steps: | |
- name: Check fmt result | |
if: ${{ needs.test.result != 'success' }} | |
run: exit 1 |