diff options
author | metagn <metagngn@gmail.com> | 2023-09-07 06:31:15 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-07 05:31:15 +0200 |
commit | ad7c1c38ff7d8f6bd328bd76a37c8ef844253e5d (patch) | |
tree | b011410debc821333ac10070395f0ab0ee320a00 /.github | |
parent | ed9e3cba07c9d03714b4ea22e50dcc7e706e0bed (diff) | |
download | Nim-ad7c1c38ff7d8f6bd328bd76a37c8ef844253e5d.tar.gz |
run docs CI on compiler changes (#22656)
refs #22650 Docs CI cover standard library runnable examples that aren't covered by the test suite and can be affected by compiler changes without knowing
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci_docs.yml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/ci_docs.yml b/.github/workflows/ci_docs.yml index d605b6301..32e8e050e 100644 --- a/.github/workflows/ci_docs.yml +++ b/.github/workflows/ci_docs.yml @@ -2,8 +2,7 @@ name: Nim Docs CI on: push: paths: - - 'compiler/docgen.nim' - - 'compiler/renderverbatim.nim' + - 'compiler/**.nim' - 'config/nimdoc.cfg' - 'doc/**.rst' - 'doc/**.md' @@ -18,8 +17,7 @@ on: pull_request: # Run only on changes on these files. paths: - - 'compiler/docgen.nim' - - 'compiler/renderverbatim.nim' + - 'compiler/**.nim' - 'config/nimdoc.cfg' - 'doc/**.rst' - 'doc/**.md' |