fix: anomaly with android_dns_cache_no_data and inconsistent dns (#1211) #326
This file contains 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
# Verifies that `go generate ./...` is not broken | |
name: generate | |
on: | |
push: | |
branches: | |
- "release/**" | |
- "fullbuild" | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Get GOVERSION content | |
id: goversion | |
run: echo "version=$(cat GOVERSION)" >> "$GITHUB_OUTPUT" | |
- uses: magnetikonline/action-golang-cache@v4 | |
with: | |
go-version: "${{ steps.goversion.outputs.version }}" | |
cache-key-suffix: "-generate-${{ steps.goversion.outputs.version }}" | |
- run: go generate ./... |