Skip to content

Commit

Permalink
Merge pull request #20 from truzzt/feat/ci-test-job
Browse files Browse the repository at this point in the history
Feat/ci test job
  • Loading branch information
dhommen authored Aug 17, 2023
2 parents a61ba68 + e1d1b61 commit eb2ea18
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
29 changes: 29 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: test

on:
pull_request:
branches:
- master
- beta
- alpha
- development


jobs:
unit-tests:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable

- name: Build and Test
run: |
cd clearing-house-app
cargo build --verbose
cargo test --verbose
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ data
.idea/
node_modules/
**/*.iml

0 comments on commit eb2ea18

Please sign in to comment.