We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca883a0 commit ebb067dCopy full SHA for ebb067d
1 file changed
.github/workflows/validate.yml
@@ -80,3 +80,26 @@ jobs:
80
shell: 'script --return --quiet --command "bash {0}"'
81
run: |
82
make -f docker.Makefile ${{ matrix.target }}
83
+
84
+ validate-gocompat:
85
+ runs-on: ubuntu-24.04
86
+ env:
87
+ GOPATH: ${{ github.workspace }}
88
+ GO111MODULE: off
89
+ steps:
90
+ -
91
+ name: Checkout
92
+ uses: actions/checkout@v6
93
+ with:
94
+ path: src/github.com/docker/cli
95
96
+ name: Set up Go
97
+ uses: actions/setup-go@v6
98
99
+ go-version: "1.25.8"
100
101
+ name: Run gocompat check
102
+ shell: 'script --return --quiet --command "bash {0}"'
103
+ working-directory: ${{ github.workspace }}/src/github.com/docker/cli
104
+ run: |
105
+ make -C ./internal/gocompat verify
0 commit comments