Skip to content

Use better literal representations in tests #30

Use better literal representations in tests

Use better literal representations in tests #30

Workflow file for this run

name: Rust
on: [push]
jobs:
build-and-test:
strategy:
matrix:
flags:
- ""
- "--no-default-features"
- "--features=gateway"
- "--no-default-features --features=gateway"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose ${{ matrix.flags }}
- name: Run tests
run: cargo test --verbose ${{ matrix.flags }}