Skip to content

Commit d4a43c2

Browse files
Workflow: automated link checker for markdown with link updates in docs (#83)
* Repair/remove broken links * Link updates to markdown format * Link updates to markdown format * Exclude forum.unity.com (Too many redirects) * Exclude forum.Unity.com * Change --exclude argument * Update CheckMarkdownLinks.yml * Update CheckMarkdownLinks.yml * Update CheckMarkdownLinks.yml * Update CheckMarkdownLinks.yml * Add Unity License * Change CI badge to point at fork: Mathijs-Bakker/Extenject
1 parent 2b22225 commit d4a43c2

File tree

4 files changed

+29
-29
lines changed

4 files changed

+29
-29
lines changed

.github/workflows/CheckMarkdownLinks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
id: lc
1111
uses: peter-evans/link-checker@v1
1212
with:
13-
args: -v -r *
13+
args: -v --exclude "https://forum.unity.com" --recursive *
1414
- name: Create Issue From File
1515
uses: peter-evans/create-issue-from-file@v2
1616
with:

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
#enable this job to request a manual unity license
1212
Request-License:
1313
runs-on: ubuntu-latest
14-
if: true
14+
if: false
1515
steps:
1616
- name: Checkout repository
1717
uses: actions/checkout@v2

Documentation/WritingAutomatedTests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ public class SpaceShipTests : ZenjectIntegrationTestFixture
297297

298298
After `PostInstall()` is called, our integration test is injected, so we can define `[Inject]` fields on it like above if we don't want to call `Container.Resolve` for every test.
299299

300-
Note that we can yield our coroutine to test behaviour across time. If you are unfamiliar with how Unity's test runner works (and in particular how 'playmode test' work) please see the [unity documentation]()https://docs.unity3d.com/Manual/testing-editortestsrunner.html.
300+
Note that we can yield our coroutine to test behaviour across time. If you are unfamiliar with how Unity's test runner works (and in particular how 'playmode test' work) please see the [unity documentation](https://docs.unity3d.com/Packages/[email protected]/manual/index.html).
301301

302302
Every zenject integration test is broken up into three phases:
303303

0 commit comments

Comments
 (0)