Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: PR checks

on:
pull_request:
branches:
- "**"

permissions:
contents: read

jobs:
test-and-build:
runs-on: ubuntu-latest

steps:
- name: Check out repository
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt

- name: Build book
run: teachbooks build book
2 changes: 1 addition & 1 deletion book/_toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ format: jb-book
root: intro.md

parts:
- caption: Week 1: Getting started!
- caption: "Week 1: Getting started!"
chapters:
- file: Week1/Folders.md
- file: Week1/installation.md
Expand Down
Loading