Skip to content

Merge branch 'master' of github.com:limuy2022/trc #113

Merge branch 'master' of github.com:limuy2022/trc

Merge branch 'master' of github.com:limuy2022/trc #113

Workflow file for this run

name: RustMacos
on:
push:
branches: ["master"]
pull_request:
branches: ["master", "dev"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Nightly
run: |
rustup toolchain install nightly --component miri
rustup override set nightly
cargo miri setup
export MIRIFLAGS="-Zmiri-disable-isolation"
- name: Build
run: cargo build --all
- name: Build Release
run: cargo build --all --release
- name: Run tests Debug
run: cargo test --all
- name: Run tests Release
run: cargo test --all --release
# - name: Run miri test
# run: cargo miri test