gradle-build-action/.github/workflows/prod.yml

34 lines
812 B
YAML
Raw Normal View History

2020-06-13 11:14:52 +00:00
# make sure the action works on a clean machine without building
name: prod
on:
2020-06-15 18:03:30 +00:00
pull_request:
2020-06-13 11:14:52 +00:00
push:
jobs:
check:
2020-06-14 10:22:21 +00:00
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
2020-06-13 11:14:52 +00:00
steps:
2020-06-13 11:17:04 +00:00
- name: Checkout sources
uses: actions/checkout@v2
- name: Test use Gradle wrapper
2020-06-13 11:17:04 +00:00
uses: ./
2020-06-13 11:14:52 +00:00
with:
build-root-directory: __tests__/data/basic
arguments: test
- name: Test custom wrapper location
uses: ./
with:
build-root-directory: __tests__/data/basic
wrapper-directory: __tests__/data/basic
arguments: test
- name: Test use defined Gradle version
2020-06-13 12:33:32 +00:00
uses: ./
with:
gradle-version: rc
2020-06-13 12:33:32 +00:00
build-root-directory: __tests__/data/basic
arguments: test