fix shell command (#55) #132
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: | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate: | |
| name: Validate | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Check formatting | |
| run: npx --yes prettier@3.9.6 --check . | |
| - name: Set up just | |
| uses: extractions/setup-just@53165ef7e734c5c07cb06b3c8e7b647c5aa16db3 # v4.0.0 | |
| - name: Install Lima CLI | |
| env: | |
| LIMA_VERSION: v2.2.0 | |
| GH_TOKEN: ${{ github.token }} | |
| run: | | |
| archive="lima-${LIMA_VERSION#v}-Linux-x86_64.tar.gz" | |
| gh release download "$LIMA_VERSION" \ | |
| --repo lima-vm/lima \ | |
| --pattern "$archive" | |
| gh attestation verify "$archive" --owner lima-vm | |
| sudo tar -C /usr/local -xzf "$archive" | |
| - name: Validate | |
| run: just validate | |
| zizmor: | |
| name: zizmor | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Project checkout | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Check GHA Workflows for security issues | |
| uses: zizmorcore/zizmor-action@6fc4b006235f201fdab3722e17240ab420d580e5 # v0.6.1 | |
| with: | |
| advanced-security: false |