-
Notifications
You must be signed in to change notification settings - Fork 21
41 lines (41 loc) · 1.1 KB
/
package-build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
name: Package Build
on:
push:
branches: [main]
tags: ['*']
pull_request:
branches: [main]
workflow_call:
inputs:
package-name:
description: The name of the package being installed.
required: true
type: string
jobs:
# Verify the package builds fine
build-package:
name: Build package
runs-on: ubuntu-latest
environment: package-build
env:
PACKAGE_NAME: ${{ inputs.package-name || 'tm_devices' }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: hynek/build-and-inspect-python-package@v2.4.0
id: build-pkg
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: x # any version
check-latest: true
- name: Test installing wheel
run: |
pip install ${{ steps.build-pkg.outputs.dist }}/*.whl
pip uninstall --yes "$PACKAGE_NAME"
- name: Test installing tarball
run: |-
pip install ${{ steps.build-pkg.outputs.dist }}/*.tar.gz
pip uninstall --yes "$PACKAGE_NAME"