Skip to content

Change --var abc=xyz to --var abc xyz, clarify README, and maybe fix CI #112

Change --var abc=xyz to --var abc xyz, clarify README, and maybe fix CI

Change --var abc=xyz to --var abc xyz, clarify README, and maybe fix CI #112

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: rustup update stable && cargo build --verbose
- name: Build no default features
run: rustup update stable && cargo build --verbose --no-default-features
- name: Run tests
run: rustup update stable && cargo test --verbose -- --skip ExpandRedirect
- name: Run tests no default features
run: rustup update stable && cargo test --verbose --no-default-features -- --skip default_config