We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbc12ec commit e068a64Copy full SHA for e068a64
.github/workflows/test.yml
@@ -9,6 +9,18 @@ on:
9
workflow_call:
10
11
jobs:
12
+ guard_swiftpm_version:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Check out
16
+ uses: actions/checkout@v6
17
+ - name: Enforce capacitor-swift-pm version
18
+ run: |
19
+ set -euo pipefail
20
+ if ! grep -Eq 'https://github.com/ionic-team/capacitor-swift-pm\.git"[[:space:]]*,[[:space:]]*from:[[:space:]]*"8\.0\.0"' Package.swift; then
21
+ echo "Expected capacitor-swift-pm to be pinned to 8.0.0 in Package.swift"
22
+ exit 1
23
+ fi
24
setup:
25
runs-on: ubuntu-latest
26
timeout-minutes: 30
0 commit comments