Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Prepare 0.150.0 release #81

Prepare 0.150.0 release

Prepare 0.150.0 release #81

Workflow file for this run

name: "Rust CI"
on:
pull_request:
jobs:
build:
name: cargo build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
- run: cargo build --verbose --all-features
# OOMs on ubuntu-latest.
# - run: RUSTFLAGS="-Awarnings" cargo test --verbose --all-features
formatting:
name: cargo fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt
- name: Rustfmt Check
uses: actions-rust-lang/rustfmt@v1