Skip to content

Merge pull request #124 from cucumber/allow_field_injection_of_hooks_… #47

Merge pull request #124 from cucumber/allow_field_injection_of_hooks_…

Merge pull request #124 from cucumber/allow_field_injection_of_hooks_… #47

Workflow file for this run

name: Build
on:
# Trigger on every pull request and on push
# to the `main` branch.
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Checkout the code
uses: actions/checkout@v4
- name: Build the app
run: ./gradlew build --stacktrace -x lint
- name: run tests
uses: ./.github/actions/android-test