chore(deps): bump actions/checkout from 4 to 5 in the github_actions group #2068
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: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
python-version: [3.8, 3.13] | |
container: | |
image: python:${{ matrix.python-version }}-bookworm | |
steps: | |
- uses: actions/checkout@v5 | |
- name: Install dependencies | |
run: | | |
apt-get update | |
apt-get install -y --no-install-recommends gettext make | |
- name: Install nox | |
run: pip install nox | |
- name: Run tests | |
run: nox -x --session "test-${{ matrix.python-version }}" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
docs: | |
runs-on: ubuntu-22.04 | |
needs: [] | |
strategy: | |
matrix: | |
python-version: [3.13] | |
container: | |
image: python:3.13-bookworm | |
steps: | |
- uses: actions/checkout@v5 | |
- name: Install nox | |
run: pip install nox | |
- name: Build docs | |
run: nox -x --session "docs" | |
lint: | |
runs-on: ubuntu-22.04 | |
needs: [] | |
strategy: | |
matrix: | |
python-version: [3.13] | |
container: | |
image: python:3.13-bookworm | |
steps: | |
- uses: actions/checkout@v5 | |
- name: Install nox | |
run: pip install nox | |
- name: Run linter | |
run: nox -x -t lint | |
standardjs: | |
runs-on: ubuntu-24.04 | |
needs: [] | |
strategy: | |
matrix: | |
python-version: [3.13] | |
container: | |
image: node:22-bookworm | |
steps: | |
- uses: actions/checkout@v5 | |
- name: Install standardjs dependencies | |
run: make ci-install-standardjs | |
- name: Run standardjs | |
run: make standardjs |