Skip to content

Update versions.

Update versions. #15

Workflow file for this run

name: Build
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
permissions:
contents: read
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.12
uses: actions/setup-python@v3
with:
python-version: "3.12"
- name: Run the build script
env:
PYTHON_312: python3
run: scripts/build.sh --ci python3
# XXX Build for Windows too:
#build-windows:
# runs-on: windows-latest
# steps:
# ...