浏览代码

Fix a few out-of-date things in CONTRIBUTING.md (#4428)

* Fix a few out-of-date things in CONTRIBUTING.md

* Update CONTRIBUTING.md
/MLA-1734-demo-provider
GitHub 4 年前
当前提交
06f788a4
共有 1 个文件被更改,包括 7 次插入5 次删除
  1. 12
      com.unity.ml-agents/CONTRIBUTING.md

12
com.unity.ml-agents/CONTRIBUTING.md


## Continuous Integration (CI)
We run CircleCI on all PRs; all tests must be passing before the PR is merged.
We run continuous integration on all PRs; all tests must be passing before the PR is merged.
checks locally, install `pre-commit` and run `pre-commit run --all-files`. Some
hooks (for example, `black`) will output the corrected version of the code;
others (like `mypy`) may require more effort to fix.
checks locally, run `pip install pre-commit` and then `pre-commit run --all-files`.
Some hooks (for example, `black`) will output the corrected version of the code;
others (like `mypy`) may require more effort to fix. You can optionally run
`pre-commit install` to install it as a git hook; after this it will run on all
commits that you make.
[`black`](https://github.com/ambv/black).
[`black`](https://github.com/psf/black).
C# code is formatted using [`dotnet-format`](https://github.com/dotnet/format).
You must have [dotnet](https://dotnet.microsoft.com/download) and

正在加载...
取消
保存