Skip to content

tracing-instrument — optional #33

tracing-instrument — optional

tracing-instrument — optional #33

name: "Rust: cargo test"
on:
push:
branches: [ "main", "dev" ]
pull_request:
branches: [ "main", "dev" ]
env:
CARGO_TERM_COLOR: always
jobs:
build-debug:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --all-features
- name: Run tests
run: cargo test --all-features
build-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --release --all-features
- name: Run tests
run: cargo test --release --all-features