mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 22:26:56 +00:00
11 lines
446 B
Bash
11 lines
446 B
Bash
#!/bin/bash -e -o pipefail
|
|
source ~/utils/utils.sh
|
|
|
|
echo "Install SwiftLint"
|
|
swiftlintUrl=$(curl -H "Authorization: token $API_PAT" -s "https://api.github.com/repos/realm/SwiftLint/releases/latest" | jq -r '.assets[].browser_download_url | select(contains("SwiftLint.pkg"))')
|
|
download_with_retries $swiftlintUrl "/tmp" "SwiftLint.pkg"
|
|
sudo installer -pkg /tmp/SwiftLint.pkg -target /
|
|
rm -rf /tmp/SwiftLint.pkg
|
|
|
|
invoke_tests "Linters" "SwiftLint"
|