Skip to content

Commit

Permalink
tweak formatting + workflow conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
geo-martino committed Jan 12, 2024
1 parent 29e32f8 commit f19215c
Show file tree
Hide file tree
Showing 8 changed files with 497 additions and 463 deletions.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,7 @@ updates:
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
6 changes: 6 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ name: Deploy package to PyPI
on:
push:
branches: [ v0.3 ]
paths:
- src/**
pull_request_target:
branches: [ v0.3 ]
paths:
- src/**

workflow_dispatch:

Expand Down
14 changes: 12 additions & 2 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,17 @@ name: Publish documentation

on:
push:
branches: ["v0.3"]
branches: [ v0.3 ]
paths:
- src/**
- docs/**
- make*
pull_request_target:
branches: [ v0.3 ]
paths:
- src/**
- docs/**
- make*

workflow_dispatch:

Expand Down Expand Up @@ -37,7 +47,7 @@ jobs:
- name: Sphinx build
run: |
sphinx-apidoc -o ./docs ./src
sphinx-apidoc -o ./docs ./src/syncify
make html
- name: Upload artifact
Expand Down
Loading

0 comments on commit f19215c

Please sign in to comment.