gradle-build-action/.github/workflows/prod.yml
Daz DeBoer beeeba406f
Look for gradle wrapper in build-root-directory by default
This removes the need to specify `wrapper-directory` when using a Gradle
project that is not located in the root of the workspace.

Fixes #44.
2021-07-05 14:05:43 -06:00

27 lines
621 B
YAML

# make sure the action works on a clean machine without building
name: prod
on:
pull_request:
push:
jobs:
check:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Test use Gradle wrapper
uses: ./
with:
build-root-directory: __tests__/data/basic
arguments: test
- name: Test use defined Gradle version
uses: ./
with:
gradle-version: rc
build-root-directory: __tests__/data/basic
arguments: test