#128 Add icon (#130) #107
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |