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 Mar 13, 2024
1 parent 02705e2 commit 61c5207
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 18 deletions.
18 changes: 0 additions & 18 deletions .github/workflows/github-actions.yml

This file was deleted.

27 changes: 27 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Rust

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- nightly

steps:
- uses: actions/checkout@v3
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- name: Build
run: cargo build --target x86_64-unknown-uefi --profile dev --verbose
- name: Run tests
run: cargo test --lib .\hypervisor\ --verbose

0 comments on commit 61c5207

Please sign in to comment.