Skip to content

chore(deps): bump the minor group with 3 updates #1897

chore(deps): bump the minor group with 3 updates

chore(deps): bump the minor group with 3 updates #1897

Workflow file for this run

name: CI
on:
pull_request:
merge_group:
push:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-test
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-Dwarnings -Clink-arg=-fuse-ld=lld"
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Install Protoc
uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install lld
run: sudo apt install lld
- name: "Test"
run: cargo test -j 2 --tests --all-features --no-fail-fast