Skip to content

Bump base64 from 0.21.0 to 0.22.0 #131

Bump base64 from 0.21.0 to 0.22.0

Bump base64 from 0.21.0 to 0.22.0 #131

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
CARGO_TERM_COLOR: always
SGX_MODE: SW
IAS_MODE: DEV
jobs:
cargofmt:
name: rustfmt
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: ✅ Run rustfmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
clippy:
name: clippy
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: ⚙ Install protobuf compiler
run: |
sudo apt install -y protobuf-compiler
- uses: actions/checkout@v4
- name: ⚡ Cargo Cache
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: 📎 Run clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --release -- -D warnings