Skip to content

Commit

Permalink
test: Add CI test cpu_test
Browse files Browse the repository at this point in the history
  • Loading branch information
howjmay committed Feb 9, 2024
1 parent 01fa6ac commit 5bd444b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: test

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

jobs:
cross_compile_tests:
runs-on: ubuntu-22.04
steps:
- name: checkout code
uses: actions/[email protected]
- name: install cargo
uses: |
sudo apt install curl
curl https://sh.rustup.rs -sSf | sh
- name: run tests
run: |
cargo test --package emurv --test cpu_test -- tests --nocapture

0 comments on commit 5bd444b

Please sign in to comment.