StrictDoc - Periodic release test #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: StrictDoc - Periodic release test | |
on: | |
schedule: | |
- cron: "00 00 * * *" | |
# pull_request: | |
# branches: [ "**" ] | |
jobs: | |
periodic_release_test_linux: | |
name: PRT – Linux | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3. | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Upgrade pip | |
run: | | |
python -m pip install --upgrade pip | |
- name: Install minimal Python packages | |
run: | | |
pip install -r requirements.bootstrap.txt | |
- name: Build and test locally | |
run: | | |
pip install strictdoc --pre | |
- name: Integration tests against the StrictDoc Pip package | |
run: | | |
invoke test-integration --strictdoc `which strictdoc` |