Skip to content

#128 Add icon (#130) #107

#128 Add icon (#130)

#128 Add icon (#130) #107

Workflow file for this run

name: Main
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
DEVELOPER_DIR: "/Applications/Xcode_16.0.app/Contents/Developer"
# Limit GITHUB_TOKEN permissions to read-only for repo contents
# https://docs.github.com/en/actions/security-guides/automatic-token-authentication
permissions:
contents: read
jobs:
lint:
name: Lint
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Run setup
run: make setup
- name: Run lint
run: make lint
build:
name: Build
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: .build
key: ${{ runner.os }}-spm-${{ hashFiles('**/Package.resolved') }}
restore-keys: |
${{ runner.os }}-spm-
- name: Run setup
run: make setup
- name: Run build
run: make build
test:
name: Test
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: .build
key: ${{ runner.os }}-spm-${{ hashFiles('**/Package.resolved') }}
restore-keys: |
${{ runner.os }}-spm-
- name: Run setup
run: make setup
- name: Run tests
run: make test