fix: stackit beta network commands - add nil pointer checks and tests for the outputResult functions #1584
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: [pull_request, workflow_dispatch] | |
| env: | |
| GO_VERSION: "1.23" | |
| jobs: | |
| main: | |
| name: CI | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Build | |
| uses: ./.github/actions/build | |
| with: | |
| go-version: ${{ env.GO_VERSION }} | |
| - name: Lint | |
| run: make lint | |
| - name: Test | |
| run: make test |