Bump styfle/cancel-workflow-action from 0.10.0 to 0.12.0 (#9) #253
This file contains hidden or 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: Test documentation | ||
| on: | ||
| pull_request: | ||
| push: | ||
| schedule: | ||
| - cron: "0 2 * * *" # run at 2 AM UTC | ||
| - | ||
| jobs: | ||
| build-linux: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Cancel Workflow Action | ||
| uses: styfle/cancel-workflow-action@0.12.0 | ||
| - uses: actions/checkout@v3 | ||
| - name: Set up Python 3.9 | ||
| uses: actions/setup-python@v4 | ||
| with: | ||
| python-version: 3.9 | ||
| - name: Install dependencies | ||
| run: | | ||
| pip install -r requirements_dev.txt | ||
| pip install . | ||
| sudo apt install pandoc | ||
| - name: Test documentation | ||
| run: | | ||
| cd docs | ||
| make html | ||