This repository has no description
0

Configure Feed

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

core / .tangled / workflows / test.yml
456 B 30 lines
1when: 2 - event: ["push", "pull_request"] 3 branch: master 4 5engine: microvm 6image: nixos 7 8dependencies: 9 - go 10 - gcc 11 - bubblewrap 12 - nix 13 - git 14 15environment: 16 CGO_ENABLED: 1 17 RUN_NIX_INTEGRATION_TEST: "true" 18 19steps: 20 - name: patch static dir 21 command: | 22 mkdir -p appview/pages/static; touch appview/pages/static/x 23 24 - name: run linter 25 command: | 26 go vet -v ./... 27 28 - name: run all tests 29 command: | 30 go test -v ./...