feat(flags): Add ETag support for local evaluation polling #288
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: Unit Tests | |
| on: | |
| pull_request: | |
| merge_group: | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Go 1.21 | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: 1.21 | |
| - name: Check out source code | |
| uses: actions/checkout@v5 | |
| - name: Build | |
| run: go build . | |
| - name: Test | |
| run: go test -timeout 30s -v . |