Skip to content

Report sphinx-build progress #157

Report sphinx-build progress

Report sphinx-build progress #157

Workflow file for this run

name: 'PR: esbonio'
on:
pull_request:
branches:
- develop
- release
paths:
- 'lib/esbonio/**'
jobs:
build:
runs-on: ubuntu-latest

Check failure on line 12 in .github/workflows/lsp-pr.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/lsp-pr.yml

Invalid workflow file

You have an error in your yaml syntax on line 12
steps:
- uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: pip cache
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-lsp-pr-pip-deps-3.11
- run: |
python --version
python -m pip install --upgrade pip
python -m pip install --upgrade tox bump2version
name: Setup Environment
- run: |
set -e
./scripts/make-release.sh lsp
name: Set Version
- name: Package
run: |
cd lib/esbonio
python -m tox -e pkg
- name: 'Upload Artifact'
uses: actions/upload-artifact@v3
with:
name: 'dist'
path: lib/esbonio/dist
test:
name: "Python v${{ matrix.python-version }} -- ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: pip cache
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-lsp-pr-pip-deps-${{ matrix.python-version }}
- run: |
python --version
python -m pip install --upgrade pip
python -m pip install --upgrade tox
name: Setup Environment
- run: |
cd lib/esbonio
version=$(echo ${{ matrix.python-version }} | tr -d .)
python -m tox run -e `tox -l | grep $version | tr '\n' ','`
shell: bash
name: Run Tests