zcash_client_sqlite: add WalletSnapshot without scan progress #5020
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: Audits | |
| on: | |
| pull_request: | |
| push: | |
| branches: main | |
| permissions: | |
| contents: read | |
| jobs: | |
| cargo-vet: | |
| name: Vet Rust dependencies | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - uses: dtolnay/rust-toolchain@2c7215f132e9ebf062739d9130488b56d53c060c # master | |
| id: toolchain | |
| with: | |
| toolchain: stable | |
| - run: rustup override set "${TOOLCHAIN}" | |
| env: | |
| TOOLCHAIN: ${{steps.toolchain.outputs.name}} | |
| - run: cargo install cargo-vet --version ~0.10 | |
| - run: cargo vet --locked | |
| cargo-deny: | |
| name: Check licenses | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - uses: EmbarkStudios/cargo-deny-action@3c6349835b2b7b196a839186cb8b78e02f7b5f25 # v2.1.1 | |
| with: | |
| command: check licenses | |
| required-audits: | |
| name: Required audits have passed | |
| needs: | |
| - cargo-vet | |
| - cargo-deny | |
| if: ${{ always() }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Determine whether all required-pass steps succeeded | |
| run: | | |
| echo "${NEEDS}" | jq -e '[ .[] | .result == "success" ] | all' | |
| env: | |
| NEEDS: ${{ toJSON(needs) }} |