Skip to content

Bump actions/setup-python from 5 to 6 #5

Bump actions/setup-python from 5 to 6

Bump actions/setup-python from 5 to 6 #5

Workflow file for this run

name: Build
on:
pull_request:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v6
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