Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
name: Build documentation
name: CI / Docs

on:
push:
pull_request:
types: [opened, synchronize]

jobs:
build:
docs_build:
name: "Build"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries

name: Publish python packages
name: CI / Publish

on:
workflow_dispatch:
Expand All @@ -10,7 +10,8 @@ on:
- published

jobs:
publish:
publish_pypi:
name: "PyPI"
runs-on: ubuntu-latest
permissions:
id-token: write
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Test python code
name: CI / Tests

on:
push:
pull_request:
types: [opened, synchronize]

jobs:
test:
name: "Tests"
tests:
name: "py${{ matrix.python-version }}-${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down