chore: update news episode index #295
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, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install X11 dev headers (required by golang.design/x/clipboard) | |
| run: sudo apt-get install -y libx11-dev | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: 'stable' | |
| - run: go test ./... | |
| - run: | | |
| VERSION=$(git describe --tags --always --dirty) | |
| go build -ldflags "-X github.com/SAP-samples/sap-devs-cli/cmd.Version=${VERSION}" -o sap-devs . |