Skip to content

Bump h5py from 3.7.0 to 3.10.0 #24

Bump h5py from 3.7.0 to 3.10.0

Bump h5py from 3.7.0 to 3.10.0 #24

Workflow file for this run

name: Check if PR builds
on:
workflow_dispatch:
pull_request:
types: [opened]
jobs:
check-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: |
python -m build --sdist --wheel --outdir dist/ .
ls -l dist
- name: Tag PR
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR: ${{ github.event.pull_request.html_url }}
run: |
gh pr edit $PR --add-label "build-successful"