Skip to content

Commit

Permalink
add ci for rs
Browse files Browse the repository at this point in the history
  • Loading branch information
junkurihara committed Oct 2, 2023
1 parent 9e0ee9a commit 04e0e40
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Unit Test

on:
push:
branches: [master]
pull_request:
branches: [master]

env:
CARGO_TERM_COLOR: always

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Run unit tests sample-03-rs
run: |
cd sample-03-rs
cargo test --verbose
- name: Run unit tests sample-04-rs
run: |
cd sample-04-rs
cargo test --verbose

0 comments on commit 04e0e40

Please sign in to comment.