Skip to content

feat: add native flush, config, and cache commands #912

feat: add native flush, config, and cache commands

feat: add native flush, config, and cache commands #912

Workflow file for this run

name: Pull Requests
on:
pull_request_target:
branches:
- master
push:
branches:
- master
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Rust Cache
uses: Swatinem/rust-cache@v2
with:
cache-targets: "false"
- name: Check formatting
run: cargo fmt --all -- --check
- name: Check compilation
run: cargo check
- name: Test
run: cargo test