mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-22 16:20:59 -05:00
95e20daa83
in a best effort manner by default allowing to specify files to hash for computing the cache key
31 lines
650 B
YAML
31 lines
650 B
YAML
name: dev
|
|
|
|
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: Build
|
|
run: |
|
|
npm install
|
|
npm run all
|
|
- name: Test wrapper
|
|
uses: ./
|
|
with:
|
|
wrapper-directory: __tests__/data/basic
|
|
build-root-directory: __tests__/data/basic
|
|
arguments: test
|
|
- name: Test dist download
|
|
uses: ./
|
|
with:
|
|
gradle-version: 6.5
|
|
build-root-directory: __tests__/data/basic
|
|
arguments: test
|