Skip to content

Merge pull request #10 from CoreWillSoft/feature/localize_support #41

Merge pull request #10 from CoreWillSoft/feature/localize_support

Merge pull request #10 from CoreWillSoft/feature/localize_support #41

Workflow file for this run

name: Pre Merge Checks
on:
push:
branches:
- main
pull_request:
branches:
- '*'
jobs:
gradle:
strategy:
matrix:
os: ubuntu-latest

Check failure on line 15 in .github/workflows/pre-merge.yaml

View workflow run for this annotation

GitHub Actions / Pre Merge Checks

Invalid workflow file

The workflow is not valid. .github/workflows/pre-merge.yaml (Line: 15, Col: 13): Unexpected value 'ubuntu-latest'
runs-on: ${{ matrix.os }}
if: ${{ !contains(github.event.head_commit.message, 'ci skip') }}
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Cache Gradle Caches
uses: actions/cache@v1
with:
path: ~/.gradle/caches/
key: cache-gradle-cache
- name: Cache Gradle Wrapper
uses: actions/cache@v1
with:
path: ~/.gradle/wrapper/
key: cache-gradle-wrapper
- name: Run Gradle tasks
run: ./gradlew build check publishToMavenLocal --continue
- name: Stop Gradle
run: ./gradlew --stop