Skip to content

chore(deps): update base64-url requirement from 2.0.2 to 3.0.0 #77

chore(deps): update base64-url requirement from 2.0.2 to 3.0.0

chore(deps): update base64-url requirement from 2.0.2 to 3.0.0 #77

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
merge_group:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
container:
# See https://github.com/3box/rust-builder
image: public.ecr.aws/r5b3e0r5/3box/rust-builder:latest
steps:
- uses: actions/checkout@v3
# Cache rust/cargo build steps
- uses: Swatinem/rust-cache@v2
with:
# The prefix cache key, this can be changed to start a new cache manually.
# default: "v0-rust"
prefix-key: ""
- name: Build
run: make build
- name: Check fmt
run: make check-fmt
- name: Check clippy
run: make check-clippy
- name: Run tests
run: make test