Skip to content

Add format utility to Noora #429

Add format utility to Noora

Add format utility to Noora #429

Workflow file for this run

name: Noora
on:
push:
branches:
- main
pull_request: {}
concurrency:
group: noora-${{ github.head_ref }}
cancel-in-progress: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
build:
name: "Release build on ${{ matrix.os }}"
strategy:
matrix:
os: [ubuntu-latest, macos-15]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: SwiftyLab/setup-swift@latest
if: runner.os == 'Linux'
with:
swift-version: "6.0"
- uses: jdx/mise-action@v2
with:
experimental: true
- name: Run
run: mise run build-spm
test:
name: "Test on ${{ matrix.os }}"
strategy:
matrix:
os: [ubuntu-latest, macos-15]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: SwiftyLab/setup-swift@latest
if: runner.os == 'Linux'
with:
swift-version: "6.0"
- uses: jdx/mise-action@v2
with:
experimental: true
- name: Run
run: mise run test-spm
lint:
name: Lint
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- uses: jdx/mise-action@v2
with:
experimental: true
- name: Run
run: mise run lint