-
Notifications
You must be signed in to change notification settings - Fork 50
34 lines (29 loc) · 1.01 KB
/
skipcheck.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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
add-job-summary: never
- 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
#- run: skip checkup --verbose --double-check
- run: skip init demo-module DemoModule
- run: skip init --appid=xyz.skip.Demo demo-app DemoApp DemoModule
- run: skip init --appfair DemoFairApp
- run: skip android sdk install --verbose
- run: skip checkup --verbose --native
- run: skip init --native demo-module-native DemoModule
- run: skip init --native --kotlincompat demo-module-kotlincompat DemoModule
- run: skip init --native --appid=xyz.skip.Demo demo-app-native DemoApp DemoModule