Skip to content

Document click actions and add notification screenshots #26

Document click actions and add notification screenshots

Document click actions and add notification screenshots #26

Workflow file for this run

name: CI
on:
push:
branches: ["*"]
tags-ignore: ["v*"]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: macos-15
steps:
- uses: actions/checkout@v6
- name: SwiftLint
run: |
brew install swiftlint
swiftlint lint --strict
test:
runs-on: macos-15
steps:
- uses: actions/checkout@v6
- name: Test
run: swift test
build:
runs-on: macos-15
steps:
- uses: actions/checkout@v6
- name: Build app bundle
run: ./scripts/build-app.sh
- name: Verify CLI
run: .build/Herald.app/Contents/MacOS/herald --version