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

Commit

Permalink
Update rust.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
memN0ps committed Jun 24, 2024
1 parent 80f27f1 commit 3bd96d0
Showing 1 changed file with 19 additions and 7 deletions.
26 changes: 19 additions & 7 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,22 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- name: Install
run: cargo install cargo-make
- name: Build
run: cargo make build-debug
- name: Test
run: cargo test --lib .\hypervisor\ --no-run --verbose
- uses: actions/checkout@v3

- name: Install cargo-make
uses: actions-rs/cargo@v1
with:
command: install
args: --debug cargo-make

- name: Run CI
uses: actions-rs/cargo@v1
with:
command: make
args: ci-flow

- name: Build
run: cargo make build-debug

- name: Test
run: cargo test --lib .\hypervisor\ --no-run --verbose

0 comments on commit 3bd96d0

Please sign in to comment.