Skip to content

Commit

Permalink
Merge pull request #117 from JSchmie/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
JSchmie authored Sep 2, 2024
2 parents 3d67964 + 7df494e commit 2a5762a
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 7 deletions.
1 change: 1 addition & 0 deletions .github/auto_label_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ github:
- changed-files:
- any-glob-to-any-file:
- '.gitignore'
- '.github/ISSUE_TEMPLATE/*'

dependencies:
- changed-files:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/auto-label-issue.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Labeling new issue
on:
issues:
types: ['opened', 'reopened']
types: [opened, reopened]

jobs:
build:
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: documentation

on:
push:
branches:
- main
tags:
- 'v*.*.*'
workflow_dispatch:

permissions:
Expand Down Expand Up @@ -36,7 +36,6 @@ jobs:
make html
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/sphinx_action' }}
with:
publish_branch: gh-pages
github_token: ${{ secrets.TOKEN_GH }}
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
- develop
types:
- closed
paths:
- scraibe/**
- pyproject.toml

push:
tags:
- 'v*.*.*'
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,14 @@ name: Run Tests

on:
pull_request:
branches: ['main', 'develop']
branches:
- main
- develop
paths:
- scraibe/**
- pyproject.toml
- requirements.txt
- test/**
workflow_dispatch:

jobs:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/ruff.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
name: Ruff
on: push
on:
push:
paths:
- '**.py'
jobs:
ruff:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'pull_request' || (github.event_name == 'push') }}
steps:
- uses: actions/checkout@v4
- uses: chartboost/ruff-action@v1

0 comments on commit 2a5762a

Please sign in to comment.