feat: Add enhanced pin/unpin task feature with improved UX (#384) #163
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: Go Backend Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| - dev | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.21.x" | |
| - name: Install dependencies | |
| run: go get . | |
| working-directory: backend | |
| - name: Build | |
| run: go build -v ./... | |
| working-directory: backend | |
| - name: Test with the Go CLI | |
| run: go test | |
| working-directory: backend |