Skip to content

chore: bump the github-actions group across 1 directory with 4 updates #5

chore: bump the github-actions group across 1 directory with 4 updates

chore: bump the github-actions group across 1 directory with 4 updates #5

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test-and-build:
name: Test and build
runs-on: macos-26
timeout-minutes: 30
steps:
- name: Check out source
uses: actions/checkout@v6
with:
persist-credentials: false
- name: Run tests
run: swift test
- name: Build package
run: swift build
- name: Build app bundle
run: script/build_app.sh
- name: Verify app defaults contract
run: script/verify_defaults.sh --app dist/TrimControl.app