Skip to content

feat!: Add a zero-deps example #126

feat!: Add a zero-deps example

feat!: Add a zero-deps example #126

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
merge_group:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run tests (including doctests)
run: cargo test -F full
- name: Install cargo-hack
uses: taiki-e/install-action@v2
with:
tool: cargo-hack
- name: Check a few configurations
run: |
cargo hack --feature-powerset check
- name: Run examples
run: |
pushd merde
cargo run --features full --example simple
cargo run --features full --example mixed
cargo run --features full --example into_static
popd