skip checks #10741
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: skip checks | |
on: | |
schedule: | |
- cron: '0 * * * *' | |
workflow_dispatch: | |
jobs: | |
skip-init: | |
runs-on: macos-15 | |
steps: | |
- uses: gradle/actions/setup-gradle@v4 | |
with: | |
gradle-version: current | |
generate-job-summary: false | |
- name: Cache Homebrew packages | |
uses: actions/cache@v4 | |
with: | |
path: ~/Library/Caches/Homebrew | |
key: homebrew-packages | |
- run: brew install skiptools/skip/skip | |
- run: skip checkup --verbose --double-check | |
- run: skip init --test demo-module DemoModule | |
- run: skip init --test --appid=xyz.skip.Demo demo-app DemoApp DemoModule | |
- run: skip android sdk install --verbose | |
- run: skip checkup --verbose --native | |
- run: skip init --test --native demo-module-native DemoModule | |
- run: skip init --test --native --appid=xyz.skip.Demo demo-app-native DemoApp DemoModule | |