Merge pull request #142 from code42/chore/prep-release-2.2.2 #615
Workflow file for this run
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: docs | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - v* | |
| pull_request: | |
| jobs: | |
| docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.9' | |
| - name: Ensure latest pip | |
| run: python -m pip install --upgrade pip | |
| - name: Install hatch | |
| run: pip install hatch==1.3.1 | |
| - name: Build docs | |
| run: hatch run docs:build |