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 496529d
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Github Actions

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

jobs:
cup_test:
runs-on: ubuntu-22.04
steps:
- name: checkout code
uses: actions/checkout@v3.2.0
- name: setup Rust Cargo
run: |
sudo apt install cargo
- name: run tests
run: |
cargo test --package emurv --test cpu_test -- tests --nocapture

0 comments on commit 496529d

Please sign in to comment.