Skip to content

update build yamls

update build yamls #48

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-14, macos-14, 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: Test
run: |
python3 -m pip install -U pip
python3 -m pip install .
python3 -c "import judy"