Skip to content

Bump actions/checkout from 4 to 6 #9

Bump actions/checkout from 4 to 6

Bump actions/checkout from 4 to 6 #9

Workflow file for this run

name: Build
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Build wheel
run: |
python -m pip install --upgrade pip
python -m pip install build
python -m build
- name: Install wheel
run: python -m pip install dist/*.whl