mirror of
https://github.com/ellmau/adf-obdd.git
synced 2025-12-19 09:29:36 +01:00
Create pr.yml
This commit is contained in:
parent
c6837ff7eb
commit
fbafe8382f
54
.github/workflows/pr.yml
vendored
Normal file
54
.github/workflows/pr.yml
vendored
Normal file
@ -0,0 +1,54 @@
|
||||
name: CI PR
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
env:
|
||||
RUST_BACKTRACE: 1
|
||||
|
||||
jobs:
|
||||
test:
|
||||
name: Test Rust ${{ matrix.rust }} on ${{ matrix.os }}
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- { rust: stable, os: ubuntu-latest }
|
||||
- { rust: stable, os: macos-latest }
|
||||
- { rust: stable, os: windows-latest }
|
||||
- { rust: stable-i686-msvc, os: windows-latest }
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: hecrj/setup-rust-action@v1
|
||||
with:
|
||||
rust-version: ${{ matrix.rust }}
|
||||
- run: cargo test --verbose --workspace
|
||||
- run: cargo test --verbose --workspace --all-features
|
||||
- run: cargo test --verbose --workspace --no-default-features
|
||||
|
||||
clippy:
|
||||
name: Lint with clippy
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
RUSTFLAGS: -Dwarnings
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: hecrj/setup-rust-action@v1
|
||||
with:
|
||||
components: clippy
|
||||
- run: cargo clippy --workspace --all-targets --verbose
|
||||
- run: cargo clippy --workspace --all-targets --verbose --no-default-features
|
||||
- run: cargo clippy --workspace --all-targets --verbose --all-features
|
||||
|
||||
rustfmt:
|
||||
name: Verify code formatting
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: hecrj/setup-rust-action@v1
|
||||
with:
|
||||
components: rustfmt
|
||||
- run: cargo fmt --all -- --check
|
||||
Loading…
x
Reference in New Issue
Block a user