Skip to content

Commit e3a5cb1

Browse files
committed
Update CI to run action against current branch
1 parent 936352e commit e3a5cb1

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/test-action.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: swift-android-action ci
22
on:
33
workflow_dispatch:
44
push:
5-
branches:
6-
- '*'
5+
pull_request:
6+
77
jobs:
88
demo:
99
runs-on: ${{ matrix.os }}
@@ -18,7 +18,8 @@ jobs:
1818
repository: apple/swift-algorithms
1919
path: apple/swift-algorithms
2020
- name: Test apple/swift-algorithms
21-
uses: skiptools/swift-android-action
21+
uses: ./
22+
#uses: skiptools/swift-android-action@main
2223
with:
2324
package-path: apple/swift-algorithms
2425
run-tests: ${{ matrix.os != 'macos-15' }} # no tests on macOS ARM
@@ -29,7 +30,8 @@ jobs:
2930
repository: skiptools/swift-sqlite
3031
path: skiptools/swift-sqlite
3132
- name: Test skiptools/swift-sqlite
32-
uses: skiptools/swift-android-action
33+
uses: ./
34+
#uses: skiptools/swift-android-action@main
3335
with:
3436
package-path: skiptools/swift-sqlite
3537
run-tests: ${{ matrix.os != 'macos-15' }} # no tests on macOS ARM

0 commit comments

Comments
 (0)