Skip to content

Commit

Permalink
Merge pull request #334 from DrewThomasson/Workflow-patch-1
Browse files Browse the repository at this point in the history
Added paths-ignore in workflows
  • Loading branch information
eginhard authored Mar 10, 2025
2 parents e2defc1 + 9038c63 commit fb71e2a
Show file tree
Hide file tree
Showing 5 changed files with 62 additions and 3 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,29 @@
name: "Docker build and push"
on:
pull_request:
paths-ignore:
- '.gitignore'
- 'CITATION.cff'
- 'CODE_OF_CONDUCT.md'
- 'CONTRIBUTING.md'
- 'LICENSE.txt'
- 'README.md'
- 'images/**'
push:
branches:
- main
- dev
tags:
- v*
paths-ignore:
- '.gitignore'
- 'CITATION.cff'
- 'CODE_OF_CONDUCT.md'
- 'CONTRIBUTING.md'
- 'LICENSE.txt'
- 'README.md'
- 'images/**'

jobs:
docker-build:
name: "Build and push Docker image"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pypi-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ on:
types: [published]
defaults:
run:
shell:
bash
shell: bash

jobs:
build:
runs-on: ubuntu-latest
Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/style_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,25 @@ on:
push:
branches:
- main
paths-ignore:
- '.gitignore'
- 'CITATION.cff'
- 'CODE_OF_CONDUCT.md'
- 'CONTRIBUTING.md'
- 'LICENSE.txt'
- 'README.md'
- 'images/**'
pull_request:
types: [opened, synchronize, reopened]
paths-ignore:
- '.gitignore'
- 'CITATION.cff'
- 'CODE_OF_CONDUCT.md'
- 'CONTRIBUTING.md'
- 'LICENSE.txt'
- 'README.md'
- 'images/**'

jobs:
lint:
runs-on: ubuntu-latest
Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,24 @@ on:
push:
branches:
- main
paths-ignore:
- '.gitignore'
- 'CITATION.cff'
- 'CODE_OF_CONDUCT.md'
- 'CONTRIBUTING.md'
- 'LICENSE.txt'
- 'README.md'
- 'images/**'
pull_request:
types: [opened, synchronize, reopened]
paths-ignore:
- '.gitignore'
- 'CITATION.cff'
- 'CODE_OF_CONDUCT.md'
- 'CONTRIBUTING.md'
- 'LICENSE.txt'
- 'README.md'
- 'images/**'
workflow_dispatch:
inputs:
trainer_branch:
Expand All @@ -16,6 +32,15 @@ on:
description: "Branch of Coqpit to test"
required: false
default: "main"
paths-ignore:
- '.gitignore'
- 'CITATION.cff'
- 'CODE_OF_CONDUCT.md'
- 'CONTRIBUTING.md'
- 'LICENSE.txt'
- 'README.md'
- 'images/**'

jobs:
unit:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ build-backend = "hatchling.build"

[project]
name = "coqui-tts"
version = "0.25.3"
version = "0.26.0"
description = "Deep learning for Text to Speech."
readme = "README.md"
requires-python = ">=3.10, <3.13"
Expand Down

0 comments on commit fb71e2a

Please sign in to comment.