Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
35570aa
Enhance app release flow
marcprux Mar 18, 2026
e8ff5eb
Add checks for secrets
marcprux Mar 18, 2026
34fbf78
Update test scripts
marcprux Mar 18, 2026
bc5a5c2
Update test scripts
marcprux Mar 18, 2026
74931bc
Update test scripts
marcprux Mar 18, 2026
6ba9ae1
Update test scripts
marcprux Mar 18, 2026
a578314
Update test scripts
marcprux Mar 18, 2026
08c8642
Update test scripts
marcprux Mar 18, 2026
fd40b70
Update test scripts
marcprux Mar 19, 2026
a359d0d
Update test scripts
marcprux Mar 19, 2026
2cd2780
Update test scripts
marcprux Mar 19, 2026
4d15cb8
Update test scripts
marcprux Mar 19, 2026
8e25943
Export project in release mode
marcprux Mar 19, 2026
38f088d
Export project in debug and release mode
marcprux Mar 19, 2026
5a8fece
Set device to pixel_9 and waitForAnimationToEnd in screenshot test
marcprux Mar 20, 2026
65f66a1
Update emulator profile to use pixel_7_pro
marcprux Mar 20, 2026
02d7eaa
Add self-test of skip-app and skip-framework workflows to actions CI
marcprux Mar 20, 2026
4a312dd
Update actions CI
marcprux Mar 20, 2026
9f09a62
Update actions CI to run framework tests on both macos and ubuntu
marcprux Mar 20, 2026
5ca7b9f
Move new skip-app to skip-application
marcprux Mar 20, 2026
8d7afbd
Add repository input to skip-app.yml
marcprux Mar 20, 2026
e94634f
Add repository input to skip-app.yml
marcprux Mar 20, 2026
129cb17
Add screenshots to summary output
marcprux Mar 20, 2026
413e818
Use new --ios-sim export option to automatically export an iOS simula…
marcprux Mar 20, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
branches: [ main ]
workflow_dispatch:
pull_request:

permissions:
contents: write

jobs:
setup-skip-test:
strategy:
Expand All @@ -19,3 +23,21 @@ jobs:
- run: skip checkup
if: ${{ startsWith(matrix.os, 'macos-') }}

# new skip-application
skip-application-test:
uses: ./.github/workflows/skip-application.yml
with:
repository: skiptools/skipapp-hello

# old skip-app
skip-app-test:
uses: ./.github/workflows/skip-app.yml
with:
repository: skiptools/skipapp-hello

skip-framework-test:
uses: ./.github/workflows/skip-framework.yml
with:
repository: skiptools/skip-lib
runs-on: "['macos-15-intel', 'ubuntu-24.04']"

5 changes: 5 additions & 0 deletions .github/workflows/skip-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ name: "Skip App CI"
on:
workflow_call:
inputs:
repository:
required: false
type: string
description: "Repository to checkout (owner/repo). Defaults to the calling repository."
brew-install:
required: false
type: string
Expand Down Expand Up @@ -61,6 +65,7 @@ jobs:
steps:
- uses: actions/checkout@v6
with:
repository: ${{ inputs.repository || github.repository }}
submodules: 'recursive'

- name: "Setup"
Expand Down
Loading
Loading