mirror of
https://github.com/jlengrand/atrium.git
synced 2026-03-10 08:01:19 +00:00
needs to be done in addition: - revert changes made in samples/spek - revert changes on gradle wrapper - add android target
30 lines
949 B
YAML
30 lines
949 B
YAML
name: Windows
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: windows-latest
|
|
strategy:
|
|
fail-fast: true
|
|
matrix:
|
|
java_version: [9, 10, 12]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: "Set up JDK ${{ matrix.java_version }}"
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: ${{ matrix.java_version }}
|
|
- name: Build buildNonDeprecatedJvm
|
|
run: ./gr buildNonDeprecatedJvm
|
|
|
|
- name: build sample atrium+spek project
|
|
run: samples\jvm\spek\gradlew -p samples\jvm\spek build
|
|
|
|
- name: Build sample atrium+junit5 project
|
|
run: samples\jvm\junit5\gradlew -p samples\jvm\junit5 build
|
|
|
|
- name: Build sample atrium+mpp kotlin project
|
|
run: samples\multiplatform\gradlew -p samples\multiplatform build
|