Skip to content

Bump version to 1.0.23 - trigger new wheels #168

Bump version to 1.0.23 - trigger new wheels

Bump version to 1.0.23 - trigger new wheels #168

Workflow file for this run

---
name: Validate
on: [ push, pull_request, workflow_dispatch ]
jobs:
validate:
name: Syntax check all code in repository
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-13, ubuntu-latest]
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v4
with:
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
submodules: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Show Config
run: |
gcc --version
- name: Test
run: |
python -m pip install -U pip
pip install -r test-requirements.txt
./build_judy.sh
(cd tests && ./compile.sh)
pip install .
(cd tests && ./a.out --unit-test)
PYTHONPATH=$(pwd) python -m twisted.trial tests.python_api