Skip to content

🔖 bump to v2024.04.0 #2

🔖 bump to v2024.04.0

🔖 bump to v2024.04.0 #2

Workflow file for this run

name: ci-build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install build
- name: Install reki
run: |
python -m pip install -e .
- name: Build
run: |
python -m build