mirror of
https://github.com/actions/setup-java.git
synced 2025-05-23 02:51:46 +00:00
44 lines
991 B
YAML
Executable File
44 lines
991 B
YAML
Executable File
name: Build Action
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- releases/*
|
|
paths-ignore:
|
|
- '**.md'
|
|
pull_request:
|
|
paths-ignore:
|
|
- '**.md'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-java@v2
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: '11'
|
|
cache: 'maven'
|
|
- name: Build with Maven
|
|
run: mvn -B package --file pom.xml
|
|
|
|
# - uses: actions/checkout@v2
|
|
# - name: Setup Node.JS 12
|
|
# uses: actions/setup-node@v2
|
|
# with:
|
|
# node-version: 12.x
|
|
# - run: npm ci
|
|
# - run: npm run build
|
|
# - run: npm run format-check
|
|
# - run: npm test
|
|
# - name: Verify no unstaged changes
|
|
# if: runner.os != 'windows'
|
|
# run: bash __tests__/verify-no-unstaged-changes.sh
|