Skip to content

Removed space in github env variable... #18

Removed space in github env variable...

Removed space in github env variable... #18

Workflow file for this run

on: [push, pull_request]
name: Build and Test
jobs:
check:
name: pddl_rs
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy
- name: Run cargo build
run: RUSTFLAGS="$RUSTFLAGS -A dead_code" cargo build --release
- name: Run cargo test
run: RUSTFLAGS="$RUSTFLAGS -A dead_code" cargo test --release --all-features