Skip to content
Merged
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
23 changes: 9 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,27 +20,22 @@ jobs:
include:

- name: Build website
python: '3.12'
nox_session: build

- name: Perform Nikola checks
python: '3.12'
nox_session: check
# - name: Perform Nikola checks
# nox_session: check
Comment on lines +25 to +26
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We had not been running this before, so it is not currently passing. I want to address this in separate pull requests.


steps:

- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v5
- name: Install uv and set the Python version
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python }}
cache: pip

- name: Install Nox and uv
run: python -m pip install --progress-bar off --upgrade nox uv
version: 0.9.23
python-version: '3.14'
enable-cache: true

- name: Run Nox session
run: nox -s build
run: uvx nox -s ${{ matrix.nox_session }}