Skip to content

Commit

Permalink
* add initial workflow for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
neodix42 committed May 31, 2024
1 parent 4db4387 commit 3bfcce5
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Run Tests

on: [ push,workflow_dispatch,workflow_call,pull_request ]

jobs:
build:
runs-on: windows-2019

steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'adopt'

- name: Run Cell tests
run: |
cd cell
mvn test
- name: Run BitString tests
run: |
cd bitstring
mvn test
- name: Run Address tests
run: |
cd address
mvn test
- name: Run Utils tests
run: |
cd utils
mvn test

0 comments on commit 3bfcce5

Please sign in to comment.