We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97c45d1 commit d0457faCopy full SHA for d0457fa
.github/workflows/validate.yml
@@ -80,3 +80,21 @@ 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: Run gocompat check
97
+ shell: 'script --return --quiet --command "bash {0}"'
98
+ working-directory: ${{ github.workspace }}/src/github.com/docker/cli
99
+ run: |
100
+ make -C ./internal/gocompat
0 commit comments