Skip to content

Bump python-lsp-jsonrpc from 1.0.0 to 1.1.0 #493

Bump python-lsp-jsonrpc from 1.0.0 to 1.1.0

Bump python-lsp-jsonrpc from 1.0.0 to 1.1.0 #493

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12-dev"]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: extractions/setup-just@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: just install
- name: Run checks
run: just check
- name: Run tests
run: just test