Skip to content

Added rust version annotations. #18

Added rust version annotations.

Added rust version annotations. #18

Workflow file for this run

name: Nightly Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
SCCACHE_GHA_ENABLED: on
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Setup sccache
uses: mozilla-actions/sccache-action@v0.0.3
- name: Checkout the repository
uses: actions/checkout@v3
with:
submodules: true
- name: Run tests
run: cargo test --release
env:
RUST_BACKTRACE: full
RUSTC_WRAPPER: sccache
- name: Build Release
run: cargo build --release
env:
RUSTC_WRAPPER: sccache