chore(deps): update mise-tools (#76) #210
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| shellcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Run ShellCheck | |
| run: | | |
| shellcheck install.sh | |
| shellcheck bin/setup | |
| shellcheck bin/test | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] # macos-latest | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Setup mise | |
| uses: jdx/mise-action@be3be2260bc02bc3fbf94c5e2fed8b7964baf074 # v3.4.0 | |
| - name: Install chezmoi | |
| run: | | |
| GIT_USER_NAME="CI Test User" GIT_USER_EMAIL="[email protected]" ./install.sh | |
| - name: Install test dependencies | |
| run: | | |
| ./bin/setup | |
| - name: Run test suite | |
| run: | | |
| ./bin/test |