chore(deps): update dependency onevcat/rainbow to from: "4.1.0" #252
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: Noora | |
on: | |
push: | |
branches: | |
- main | |
pull_request: {} | |
concurrency: | |
group: noora-${{ github.head_ref }} | |
cancel-in-progress: true | |
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: 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: 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 |