Skip to content

CI: try new workflow #57

CI: try new workflow

CI: try new workflow #57

Workflow file for this run

name: Rust
on:
push:
branches:
- master
paths:
- '.github/workflows/rust.yml'
- 'src/**.rs'
- 'tests/**'
- 'Cargo.toml'
- 'valgrind.supp'
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- '**'
paths:
- '.github/workflows/rust.yml'
- 'src/**.rs'
- 'tests/**'
- 'Cargo.toml'
- 'valgrind.supp'
jobs:
check:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
if: github.event.pull_request.draft == false
uses: DoumanAsh/douman-ci/.github/workflows/rust.yml@master
with:
runs-on: ${{ matrix.os }}
min-rustc-version: "1.82.0"
valgrind: true
valgrind_flags: "--suppressions=valgrind.supp"
cargo-features: "dred"