Updated dashboard to remove disabled cards based on build config #875
Workflow file for this run
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
# build checks whether the project builds | |
name: build | |
on: [push] | |
jobs: | |
build: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
version: | |
- "StableFullRelease" | |
- "StableFdroidRelease" | |
steps: | |
- uses: actions/setup-java@v2 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- name: checkout | |
uses: actions/checkout@v2 | |
- run: ./gradlew build${{ matrix.version }} && ./gradlew clean |