Skip to content

Update iOS target, cycle logic, and notifications #3

Update iOS target, cycle logic, and notifications

Update iOS target, cycle logic, and notifications #3

Workflow file for this run

name: CycleOne CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build and Test
runs-on: macos-15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '16.1'
- name: Install dependencies
run: |
brew install swiftlint swiftformat pre-commit
pre-commit install
- name: Run Checks (Lint)
run: make check
- name: Run Tests
run: make test