Merge pull request #249 from KisaragiEffective/feat/logical-shift #324
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
env: | |
CARGO_TERM_COLOR: always | |
CI_RUST_CACHE_VERSION: v0 | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 | |
- name: Rust Cache | |
uses: Swatinem/rust-cache@v2.7.0 | |
with: | |
prefix-key: ${{ matrix.os }}-${{ env.CI_RUSTC_VERSION }}-${{ env.CI_RUST_CACHE_VERSION }}-${{ hashFiles('**/Cargo.lock') }} | |
# See rust-wasm.yml for CI details about those package | |
- name: Build package | |
run: cargo build --workspace --exclude origlang-interop --exclude origlang-interop-frontend-webserver --verbose | |
- name: Run tests | |
run: cargo test --workspace --exclude origlang-interop --exclude origlang-interop-frontend-webserver --verbose | |
- name: Run compile test | |
run: cargo run -p origlang-cli -- test |