1## 2# See https://github.com/GoogleContainerTools/container-structure-test 3# for schema definition 4## 5schemaVersion: 2.0.0 6 7fileExistenceTests: 8 - name: 'go' 9 path: '/usr/local/go/bin/go' 10 shouldExist: true 11 permissions: '-rwxr-xr-x' 12 13commandTests: 14 - name: 'go version' 15 command: 'go' 16 args: ['version'] 17 expectedOutput: ["go version go1.23"]