diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9fd1646f2527..c2947382e719 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -101,6 +101,11 @@ jobs: || ( github.event_name == 'pull_request' && !contains(github.event.pull_request.body, '[skip ci]') + ) + || ( + github.event_name == 'pull_request' + && !contains(github.event.pull_request.body, '[skip ci]') + && !contains(github.event.pull_request.body, '[skip test_windows_fast]') )" steps: @@ -121,6 +126,11 @@ jobs: || ( github.event_name == 'push' && !startsWith(github.event.ref, 'refs/tags/sbt-dotty-') + ) + || ( + github.event_name == 'pull_request' + && !contains(github.event.pull_request.body, '[skip ci]') + && contains(github.event.pull_request.body, '[test_windows_full]') )" steps: diff --git a/scala3doc/test-documentations/basic/index.md b/scala3doc/test-documentations/basic/index.md index e192044e06f8..2205e0c12d3e 100644 --- a/scala3doc/test-documentations/basic/index.md +++ b/scala3doc/test-documentations/basic/index.md @@ -3,6 +3,6 @@ title: Basic test --- # Header -[Link to docs](docs/index.html) [Link to docs2](docs/index.md) +[Link to docs](docs/index.html) And a text! \ No newline at end of file diff --git a/scala3doc/test/dotty/dokka/site/SiteGeneratationTest.scala b/scala3doc/test/dotty/dokka/site/SiteGeneratationTest.scala index 06999b1fe721..a6166ba5acda 100644 --- a/scala3doc/test/dotty/dokka/site/SiteGeneratationTest.scala +++ b/scala3doc/test/dotty/dokka/site/SiteGeneratationTest.scala @@ -72,7 +72,7 @@ class SiteGeneratationTest: } def indexLinks(content: DocumentContext) = - content.assertAttr("p a","href", "docs/index.html","docs/index.html" ) + content.assertAttr("p a","href", "docs/index.html") checkFile("index.html")(title = "Basic test", header = "Header", parents = Seq(projectName), indexLinks) checkFile("docs/Adoc.html")(title = "Adoc", header = "Header in Adoc", parents = Seq(projectName))