Merge pull request #1 from flox/CfgMgmtCamp2026 #2
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@v4" | |
| - name: "Install Flox" | |
| uses: "flox/install-flox-action@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" |