Skip to content

feat(ci): add test ci job #26

feat(ci): add test ci job

feat(ci): add test ci job #26

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
lint:
name: Lint
runs-on: [ubuntu-latest]
steps:
- uses: open-turo/actions-jvm/lint@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
test:
name: Test
needs: [lint]
runs-on: [ubuntu-latest]
steps:
- name: checkout
uses: actions/checkout@v3
- name: Set up JDK 11
uses: open-turo/action-setup-tools@v1
- name: Setup Android SDK
uses: android-actions/setup-android@v2
- name: Unit tests
run: ./gradlew nibel-tests:test