Skip to content

Update GitHub Actions checkout runtime #2

Update GitHub Actions checkout runtime

Update GitHub Actions checkout runtime #2

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test-and-build:
runs-on: macos-15
steps:
- uses: actions/checkout@v7
- name: Test
run: swift test
- name: Build app bundle
run: ./scripts/build-app.sh
- name: Verify menu bar bundle settings
run: |
test "$(/usr/libexec/PlistBuddy -c 'Print :LSUIElement' 'dist/Codex Usage.app/Contents/Info.plist')" = "true"
codesign --verify --deep --strict 'dist/Codex Usage.app'