Skip to content

chore(deps): update rust crate anyhow to 1.0.81 #65

chore(deps): update rust crate anyhow to 1.0.81

chore(deps): update rust crate anyhow to 1.0.81 #65

Workflow file for this run

# Based on https://github.com/actions-rs/meta/blob/master/recipes/quickstart.md
---
on:
workflow_dispatch:
pull_request:
branches:
- main
- 'v*'
name: Pull Request
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install Protoc
uses: arduino/setup-protoc@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt, clippy
- name: Cache artefacts
uses: Swatinem/rust-cache@v2
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings
- name: Install Cerbos
uses: cerbos/cerbos-setup-action@v1
with:
version: latest
- name: Run tests
run: |
cerbos run --set=storage.disk.directory=resources/store -- cargo test
env:
CERBOS_NO_TELEMETRY: "1"