Monorepo for Tangled tangled.org
6

Configure Feed

Select the types of activity you want to include in your feed.

at master 390 B View raw
1when: 2 - event: ["push", "pull_request"] 3 branch: master 4 5engine: microvm 6image: nixos 7 8dependencies: 9 - go 10 - gcc 11 12environment: 13 CGO_ENABLED: 1 14 15steps: 16 - name: patch static dir 17 command: | 18 mkdir -p appview/pages/static; touch appview/pages/static/x 19 20 - name: run linter 21 command: | 22 go vet -v ./... 23 24 - name: run all tests 25 command: | 26 go test -v ./...