Update blank.yml #1074
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
# schedule: | |
# - cron: "*/60 * * * *" | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
macos: | |
name: "Run" | |
strategy: | |
fail-fast: false | |
matrix: | |
runner: ["ghcr.io/cirruslabs/macos-runner:sonoma", "ghcr.io/cirruslabs/macos-runner:sequoia"] | |
runs-on: ["${{ matrix.runner }}"] | |
timeout-minutes: 10 | |
steps: | |
- name: Check macOS version | |
run: sw_vers | |
- name: Uptime | |
run: uptime | |
- name: Disk Info | |
run: df -h | |
- name: Fastlane Version | |
run: fastlane --version | |
- name: List Ruby Versions | |
run: rbenv versions | |
- name: List Installed Xcodes | |
run: xcodes installed | |
- name: Hosts File | |
run: cat ~/.ssh/known_hosts || true | |
- name: Hosts | |
run: ssh-keyscan -t rsa,ecdsa,ed25519 github.com | |
- name: Setup SSH agent | |
uses: webfactory/[email protected] | |
with: | |
ssh-private-key: | | |
-----BEGIN RSA PRIVATE KEY----- | |
MIIBOgIBAAJBAKj34GkxFhD90vcNLYLInFEX6Ppy1tPf9Cnzj4p4WGeKLs1Pt8Qu | |
KUpRKfFLfRYC9AIKjbJTWit+CqvjWYzvQwECAwEAAQJAIJLixBy2qpFoS4DSmoEm | |
o3qGy0t6z09AIJtH+5OeRV1be+N4cDYJKffGzDa88vQENZiRm0GRq6a+HPGQMd2k | |
TQIhAKMSvzIBnni7ot/OSie2TmJLY4SwTQAevXysE2RbFDYdAiEBCUEaRQnMnbp7 | |
9mxDXDf6AU0cN/RPBjb9qSHDcWZHGzUCIG2Es59z8ugGrDY+pxLQnwfotadxd+Uy | |
v/Ow5T0q5gIJAiEAyS4RaI9YG8EWx/2w0T67ZUVAw8eOMB6BIUg0Xcu+3okCIBOs | |
/5OiPgoTdSy7bcF9IGpSE8ZgGKzgYQVZeN97YE00 | |
-----END RSA PRIVATE KEY----- | |
- name: List | |
run: xcrun simctl list |