Skip to content

Commit

Permalink
Add simple github actions file to run rust tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ryardley committed Aug 22, 2024
1 parent 70647c3 commit f74e095
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/rust-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Rust Tests

on:
workflow_dispatch:
pull_request:
push:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.81.0
override: true

- name: Run tests
run: |
cd ./packages/ciphernode/
cargo test

0 comments on commit f74e095

Please sign in to comment.