Skip to content

Rust-Non-Cached

Rust-Non-Cached #1008

name: Rust-Non-Cached
on:
schedule:
- cron: '0 18 * * *' # run at 18:00 UTC (JST 03:00)
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macOS-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Download dictionary
run: bash fetch_dictionary.sh "20220519" "core"
- name: Run tests (Debug)
run: cargo test --verbose
- name: Run tests (Release)
run: cargo test --release --verbose