Skip to content

chore(deps): bump libflate_lz77 from 2.1.0 to 2.2.0 #2424

chore(deps): bump libflate_lz77 from 2.1.0 to 2.2.0

chore(deps): bump libflate_lz77 from 2.1.0 to 2.2.0 #2424

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
CMAKE_POLICY_VERSION_MINIMUM: 3.5
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Protobuf Compiler
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
- name: Set PROTOC Environment Variable
run: echo "PROTOC=$(which protoc)" >> $GITHUB_ENV
- name: Setup sccache
uses: mozilla/sccache-action@v0.0.8
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose