Bump flox/install-flox-action from dc880156f423b1b9f03534c3ccbb3bc3bb8c223e to 1c148ba035549e646587ab7b35b1f04a01dd4c22 #8
Workflow file for this run
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: | |
| test: | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | |
| - name: "Install Flox" | |
| uses: flox/install-flox-action@1c148ba035549e646587ab7b35b1f04a01dd4c22 # main | |
| - name: "Lint Go code" | |
| run: "flox activate -r flox/go -- go vet ./..." | |
| - name: "Run Go tests" | |
| run: "flox activate -r flox/go -- go test -v ./..." | |
| - name: "Run workshop tests" | |
| run: "./test_workshop.sh" |