fix(#235): spm should support custom tools version and platforms #910
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Build/Test on Push | |
on: | |
pull_request: | |
branches: | |
- "**" | |
push: | |
branches: | |
- "**" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v2 | |
- name: Markdown links check | |
uses: ruzickap/action-my-markdown-link-checker@v1 | |
with: | |
exclude: | | |
*website* | |
*managing-deploy-keys* | |
*version-managers* | |
- uses: actions/setup-java@v2 | |
with: | |
distribution: "adopt" | |
java-version: "17" | |
- name: Validate Gradle Wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Build Main | |
run: ./gradlew build --no-daemon --stacktrace |