Skip to content

Commit

Permalink
[WIP] to remove
Browse files Browse the repository at this point in the history
  • Loading branch information
sbidoul committed Jan 12, 2025
1 parent a628fb5 commit e950052
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/tmp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Temporary

on:
pull_request:
branches:
- "*"

jobs:
build:
name: Build distribution 📦
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Build a binary wheel and a source tarball
run: |
python3 -m venv build-env
build-env/bin/python -m pip install --no-deps --only-binary :all: --require-hashes -r build-requirements.txt
build-env/bin/python -m build --no-isolation
- name: Store the distribution packages
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4
with:
name: python-package-distributions
path: dist/

0 comments on commit e950052

Please sign in to comment.