Skip to content

Commit

Permalink
Add Unit tests CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dufkan committed Jun 19, 2023
1 parent 70223e8 commit 5e35e64
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Unit tests

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

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Checkout repository with submodules
uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
- name: Run tests
run: ./gradlew test
- name: Run JavaCard build
run: ./gradlew buildJavaCard

0 comments on commit 5e35e64

Please sign in to comment.