Skip to content

Update README.md

Update README.md #29

Workflow file for this run

name: python-build-test
on:
push:
branches:
- main
- master
pull_request:
workflow_dispatch:
jobs:
python_build_matrix:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: '3.11'
- name: Support longpaths
run: git config --system core.longpaths true
if: matrix.os == 'windows-latest'
- name: Build pyblst
run: pip install . pytest
- name: Test pyblst
run: pytest test