Skip to content

Update to 2.37.0.46 #808

Update to 2.37.0.46

Update to 2.37.0.46 #808

Workflow file for this run

name: Rust
on:
push:
branches: [ master, nightly ]
pull_request:
branches: [ master, nightly ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: Checkout
- uses: actions/cache@v3
name: Pull Cargo cache
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build
run: cargo build --release --verbose
- name: Run tests
run: cargo test --release --verbose