Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
fluidsonic committed Aug 12, 2020
0 parents commit d41ba11
Show file tree
Hide file tree
Showing 26 changed files with 1,131 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Tests

on: [push]

jobs:
iOS:
name: iOS x64
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- run: xcodebuild -version
- run: sudo xcode-select -switch /Applications/Xcode_11.app
- run: xcodebuild -version
- run: xcrun simctl list
- run: ./gradlew iosX64Test
macOS:
name: macOS x64
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- run: xcodebuild -version
- run: sudo xcode-select -switch /Applications/Xcode_11.app
- run: xcodebuild -version
- run: xcrun simctl list
- run: ./gradlew macosX64Test
jdk7:
name: JDK 7 (on JDK 8)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: 8
- run: ./gradlew jvmJdk7test
jdk:
name: JDK ${{ matrix.java_version }}
runs-on: ubuntu-latest
strategy:
matrix:
java_version: ['8', '9', '10', '11', '12', '13']
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java_version }}
- run: ./gradlew jvmTest
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/.idea/**
!/.idea/codeStyles/
!/.idea/codeStyles/**
!/.idea/inspectionProfiles/
!/.idea/inspectionProfiles/**
!/.idea/runConfigurations/
!/.idea/runConfigurations/**
!/.idea/gradle.xml
!/.idea/saveactions_settings.xml
.DS_Store
.gradle
build
out
209 changes: 209 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/codeStyles/codeStyleConfig.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit d41ba11

Please sign in to comment.