Skip to content
This repository has been archived by the owner on Sep 6, 2024. It is now read-only.

Change the all from trait impls to tryfrom impls #16

Change the all from trait impls to tryfrom impls

Change the all from trait impls to tryfrom impls #16

Workflow file for this run

name: Rust Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
target:
- x86_64-pc-windows-msvc
include:
- target: x86_64-pc-windows-msvc
os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup Rust toolchain and cli
run: |
rustup target add ${{ matrix.target }}
rustup target add wasm32-unknown-unknown
# rustup install nightly
# rustup +nightly component add miri
- uses: Swatinem/rust-cache@v2
with:
prefix-key: "v0-rust-${{ matrix.target }}"
- name: Test
run: |
cargo test
cd src-tauri
cargo test
# cargo +nightly miri test