refactor: Rename mise configuration file from deprecated naming schem… #40
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: Build | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| name: Plugin Testing | |
| strategy: | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - macos-latest | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| # Install development dependencies | |
| - uses: jdx/mise-action@v2 | |
| # Lint project files | |
| - run: ./scripts/lint.bash | |
| # Test plugin | |
| - run: ./scripts/test.bash |