Skip to content

chore(deps): update jdx/mise-action action to v4 #249

chore(deps): update jdx/mise-action action to v4

chore(deps): update jdx/mise-action action to v4 #249

Workflow file for this run

name: Swish
on:
push:
branches:
- main
pull_request: {}
concurrency:
group: swish-${{ github.head_ref }}
cancel-in-progress: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
build:
name: "Release build on ${{ matrix.os }}"
strategy:
matrix:
os: [macos-15]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: jdx/mise-action@v4
with:
experimental: true
- name: Run
run: mise run build
test:
name: "Test on ${{ matrix.os }}"
strategy:
matrix:
os: [macos-15]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: jdx/mise-action@v4
with:
experimental: true
- name: Run
run: mise run test
lint:
name: Lint
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- uses: jdx/mise-action@v4
with:
experimental: true
- name: Run
run: mise run lint