Skip to content

Make tests work on Windows and typos #69

Make tests work on Windows and typos

Make tests work on Windows and typos #69

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven + Upload
on:
on: [push, pull_request]

Check failure on line 7 in .github/workflows/maven.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/maven.yml

Invalid workflow file

You have an error in your yaml syntax on line 7
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'adopt'
- name: Build with Maven
run: mvn -B -V install -Dmaven.test.skip=true -Dmaven.javadoc.skip=true package
- name: List files
run: ls -l target
- name: Upload
env:
GITHUB_TOKEN: ${{ secrets.CI_UPLOADER }}
run: common/scripts/upload.sh target/*.zip target/*.md5 target/*.sha*