Skip to content

Commit

Permalink
Merge pull request #201 from martinhoyer/ci
Browse files Browse the repository at this point in the history
Add PyPA publish and pre-commit check workflows
  • Loading branch information
maurizio-lombardi authored Oct 7, 2024
2 parents 1fb8db1 + 14979ed commit a03594b
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: pre-commit

on:
pull_request:
push:
branches: [master]

jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: pre-commit/[email protected]
40 changes: 40 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: pypi-release

on:
release:
types:
- published
workflow_dispatch:
inputs:
ref:
description: 'Branch, tag or SHA to checkout'
required: true
default: 'master'

jobs:
pypi-publish:
runs-on: ubuntu-latest

permissions:
id-token: write # Needed for trusted publishing

environment:
name: pypi
url: https://pypi.org/p/rtslib-fb

steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.ref || github.ref }}

- uses: actions/setup-python@v5
with:
python-version: "3.x"

- name: Build a binary wheel and a source tarball
run: |
python -m pip install hatch
hatch build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit a03594b

Please sign in to comment.