From 15aaa2b29700932867e12d6f477eb4e5ea58703f Mon Sep 17 00:00:00 2001 From: Niklas Eicker Date: Wed, 3 Mar 2021 23:17:48 +0000 Subject: [PATCH] Fix broken link in plugin guidelines (#1513) I stumbled over a broken link in the plugin guidelines Co-authored-by: Niklas Eicker --- docs/plugins_guidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/plugins_guidelines.md b/docs/plugins_guidelines.md index d4b159cf46..f37c1e54fd 100644 --- a/docs/plugins_guidelines.md +++ b/docs/plugins_guidelines.md @@ -95,7 +95,7 @@ Additionally, it can be helpful to list: ### Tests and CI -Tests are always good! For CI, you can check [this example](https://github.com/actions-rs/meta/blob/main/recipes/quickstart.md) for a quickstart using GitHub Actions. As Bevy has additional Linux dependencies, you should install them before building your project, [here is how Bevy is doing it](https://github.com/bevyengine/bevy/blob/cf0e9f9968bb1bceb92a61cd773478675d35cbd6/.github/workflows/ci.yml#L39). Even if you don't have many (or any) tests, setting up CI will compile check your plugin and ensure a basic level of quality. +Tests are always good! For CI, you can check [this example](https://github.com/actions-rs/meta/blob/master/recipes/quickstart.md) for a quickstart using GitHub Actions. As Bevy has additional Linux dependencies, you should install them before building your project, [here is how Bevy is doing it](https://github.com/bevyengine/bevy/blob/cf0e9f9968bb1bceb92a61cd773478675d35cbd6/.github/workflows/ci.yml#L39). Even if you don't have many (or any) tests, setting up CI will compile check your plugin and ensure a basic level of quality. ### Publishing your Plugin