Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2021-10-03 12:31:32 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2021-10-03 14:15:36 +0300
commit6fc96f412a06a8a5cc04601d8293d51d8614f1cb (patch)
treeed13963ed4cb9c91788fd3c463217e1ca24fe5fe /.github
parentc97c488bb6baad2cd2e76615dbff448286052544 (diff)
test: Do test with the HEAD of docutils
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/docutils-latest.yml25
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/docutils-latest.yml b/.github/workflows/docutils-latest.yml
new file mode 100644
index 000000000..35d4c751e
--- /dev/null
+++ b/.github/workflows/docutils-latest.yml
@@ -0,0 +1,25 @@
+name: Test with the HEAD of docutils
+
+on:
+ schedule:
+ - cron: "0 0 * * SUN"
+ workflow_dispatch:
+
+jobs:
+ test:
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: Set up Python
+ uses: actions/setup-python@v2
+ - name: Check Python version
+ run: python --version
+ - name: Unpin docutils
+ run: sed -i -e "s/'docutils>=.*'/'docutils'/" setup.py
+ - name: Install graphviz
+ run: sudo apt-get install graphviz
+ - name: Install dependencies
+ run: pip install -U tox codecov
+ - name: Run Tox
+ run: tox -e du-latest -- -vv