forked from tangled.org/core
Monorepo for Tangled — https://tangled.org
1when: 2 - event: ["push", "pull_request"] 3 branch: master 4 5engine: nixery 6 7dependencies: 8 nixpkgs: 9 - go 10 - gcc 11 12steps: 13 - name: patch static dir 14 command: | 15 mkdir -p appview/pages/static; touch appview/pages/static/x 16 17 - name: run linter 18 environment: 19 CGO_ENABLED: 1 20 command: | 21 go vet -v ./... 22 23 - name: run all tests 24 environment: 25 CGO_ENABLED: 1 26 command: | 27 go test -v ./...