Update Ch 1 Fig 5 based on publisher edits to fix #1416 #5215
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: Make and test the book | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: 3.9 | |
| cache: pip | |
| - name: Install dependencies | |
| run: python -m pip install -r requirements.txt --no-deps | |
| - uses: r-lib/actions/setup-pandoc@v2 | |
| with: | |
| pandoc-version: 3.2.1 | |
| - run: make book lint |