Skip to content

chore: Release

chore: Release #377

Workflow file for this run

on:
merge_group:
pull_request:
push:
branches:
- master
env:
CARGO_INCREMENTAL: false
CARGO_TERM_COLOR: always
RUST_BACKTRACE: full
RUSTDOCFLAGS: -Dwarnings
name: CI
jobs:
lint:
name: rust code lint
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly-2023-02-01
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- name: format style check
run: cargo fmt --all -- --check
- name: cargo clippy check
run: cargo clippy --all-targets --all-features -- -D warnings
- name: cargo check
run: cargo check
self-host:
name: Test Suite
needs: lint
uses: RibirX/share-workflows/.github/workflows/ribir-win-image-tests.yaml@main