Skip to content

run tests in release mode #10

run tests in release mode

run tests in release mode #10

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: flyci-macos-large-latest-m1
steps:
- uses: actions/checkout@v3
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- name: Build
run: cargo build --verbose
- name: Run tests (dev)
run: cargo test --verbose
- name: Run tests (release)
run: cargo test --release --verbose