1. 一个令人困惑的问题 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 name:Goon:[push, pull_request]jobs:build:name:CIruns-on:ubuntu-lateststeps:- name:Set up Go 1.13uses:actions/
[email protected]:go-version:1.13- name:Check out code into the Go module directoryuses:actions/
[email protected] name:Check pr is properly formattedrun:diff -u <(echo -n) <(gofmt -d ./pkg ./cmd ./tools ./test)- name:Test & Buildrun:make all 上面是项目中 workflow 的一部分, 主要用来检测代码风格、执行单元测试、编译代码。提交 Pull Requests 时, 就会触发执行。 但 GitHub Actions 一直报错, 提示如