Skip to content

Commit

Permalink
Add new CI job to build the package
Browse files Browse the repository at this point in the history
  • Loading branch information
kytta committed Sep 7, 2024
1 parent 209b946 commit 885587b
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI

on:
push:
branches: [main]
tags: ["*"]
pull_request:
branches: [main]
workflow_dispatch:

env:
FORCE_COLOR: 1
PIP_DISABLE_PIP_VERSION_CHECK: 1
PIP_NO_PYTHON_VERSION_WARNING: 1

permissions: {}

jobs:
build:
name: Build & verify package
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: hynek/build-and-inspect-python-package@v2
id: baipp

outputs:
python-versions: ${{ steps.baipp.outputs.supported_python_classifiers_json_array }}

0 comments on commit 885587b

Please sign in to comment.