Skip to content

chore: bump the github-actions group with 5 updates #2

chore: bump the github-actions group with 5 updates

chore: bump the github-actions group with 5 updates #2

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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
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