Skip to content

Commit

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

on: [ push ]

jobs:
darwin:
name: Darwin
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 macosX64Test tvosX64Test watchosX86Test
js:
name: JS
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: ./gradlew jsTest
jdk:
name: JDK ${{ matrix.java_version }}
runs-on: ubuntu-latest
strategy:
matrix:
java_version: [ '8', '9', '10', '11', '12', '13', '14' ]
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
210 changes: 210 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 cafd75c

Please sign in to comment.