chore(deps): update jdx/mise-action action to v4 #249
This file contains hidden or 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: 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 |