Skip to content

be more chill about the leading whitespace #804

be more chill about the leading whitespace

be more chill about the leading whitespace #804

Workflow file for this run

name: Build Package
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
build-python:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: "pip"
- name: Install pypa/build
run: python3 -m pip install build --user
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.dev.txt -r requirements.txt -r requirements.finetune.txt
- name: Build a binary wheel and a source tarball
run: python3 -m build --outdir dist/