Skip to content

Use const { ... } syntax in thread_local macro calls #32

Use const { ... } syntax in thread_local macro calls

Use const { ... } syntax in thread_local macro calls #32

Workflow file for this run

name: Test
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@nightly
- name: Build (no features)
run: cargo build --no-default-features -F pedantic-debug-assertions --verbose --workspace
- name: Run tests (no features)
run: cargo test --no-default-features -F pedantic-debug-assertions --verbose --workspace
- name: Build (default features)
run: cargo build -F pedantic-debug-assertions --verbose --workspace
- name: Run tests (default features)
run: cargo test -F pedantic-debug-assertions --verbose --workspace
- name: Build (feature full)
run: cargo build -F full,pedantic-debug-assertions --verbose --workspace
- name: Run tests (feature full)
run: cargo test -F full,pedantic-debug-assertions --verbose --workspace
- name: Build (every feature)
run: cargo build --all-features --verbose --workspace
- name: Run tests (every feature)
run: cargo test --all-features --verbose --workspace