Skip to content

feat(instruction) Added basic instructions, and immediate loading. #311

feat(instruction) Added basic instructions, and immediate loading.

feat(instruction) Added basic instructions, and immediate loading. #311

Workflow file for this run

name: Rust
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: rustup update ${{ matrix.toolchain }} && rustup default nightly ${{ matrix.toolchain }}
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose