Skip to content

Commit

Permalink
Add momoka rust CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Juan Garcia committed Aug 11, 2023
1 parent a3bc283 commit 625db22
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/pr-momoka-rs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build, Lint and Unit Tests for Momoka RUST

on:
pull_request:
types: [labeled, opened, synchronize, unlabeled]
# Run only for the momoka-rs directory
paths:
- 'momoka-rs/**'

jobs:
build-lint-test:
name: Build-Lint-Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Build
run: cd momoka-rs && cargo build

- name: Run the unit tests
run: cd momoka-rs && cargo test

0 comments on commit 625db22

Please sign in to comment.