Skip to content

Commit

Permalink
.github: Run unit & integration tests on GitHub runner
Browse files Browse the repository at this point in the history
Signed-off-by: Rob Bradford <rbradford@rivosinc.com>
  • Loading branch information
rbradford committed Jan 25, 2024
1 parent 465d1d8 commit 6083705
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Rust Hypervisor Firmware Tests
on: [pull_request, create]

jobs:
build:
name: Build
runs-on: ubuntu-22.04
strategy:
fail-fast: false
steps:
- name: Code checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Run unit tests
run: scripts/dev_cli.sh tests --unit
- name: Run integration tests
run: scripts/dev_cli.sh tests --integration

0 comments on commit 6083705

Please sign in to comment.