Verify libraries compilation #214
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
on: | |
schedule: | |
# Runs at 04:00 am | |
- cron: '0 4 * * *' | |
workflow_dispatch: | |
# Generates a list of libraries that cannot be | |
# compiled (printed to the action stdout) | |
name: Verify libraries compilation | |
jobs: | |
verify: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 8 | |
- uses: actions/checkout@v2 | |
with: | |
path: google-api-java-client-services | |
# we install the moreutils `parallel` command | |
- run: sudo apt-get install moreutils | |
- working-directory: google-api-java-client-services | |
run: bash .github/workflows/verify_compilation.sh | |