Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(examples): rm inexistent dir in
make lint
targets; use make
…
… in ci (#2034) Currently `cd examples && make lint` fails because `gno.land/r/gov` does not exists. This PR removes `gno.land/r/gov` from the targets and refactor the CI to run the make rule ## Before ``` ❯ cd examples && make lint go run ../gnovm/cmd/gno lint ./gno.land/p ./gno.land/r/demo ./gno.land/r/gnoland ./gno.land/r/sys ./gno.land/r/gov list packages from args: invalid file or package path: stat ./gno.land/r/gov: no such file or directory exit status 1 make: *** [lint] Error 1 ``` ## After ``` ❯ cd examples && make lint go run ../gnovm/cmd/gno lint ./gno.land/p ./gno.land/r/demo ./gno.land/r/gnoland ./gno.land/r/sys ``` <details><summary>Contributors' checklist...</summary> - [ ] Added new tests, or not needed, or not feasible - [ ] Provided an example (e.g. screenshot) to aid review or the PR is self-explanatory - [ ] Updated the official documentation or not needed - [ ] No breaking changes were made, or a `BREAKING CHANGE: xxx` message was included in the description - [ ] Added references to related issues and PRs - [ ] Provided any useful hints for running manual tests - [ ] Added new benchmarks to [generated graphs](https://gnoland.github.io/benchmarks), if any. More info [here](https://github.com/gnolang/gno/blob/master/.benchmarks/README.md). </details> --------- Signed-off-by: Norman Meier <[email protected]>
- Loading branch information