Skip to content

Commit

Permalink
feat(ci): skip python pipelines for changes in docs (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
KarelZe authored Jan 14, 2024
1 parent cca92e8 commit 412f246
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

name: Publish Python 🐍 distribution 📦 to PyPI and TestPyPI

on: push
on:
push:
paths:
- '**/*'
- '!docs/**'

jobs:
build:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Tests
on: [push, pull_request]
on:
push:
paths:
- '**/*'
- '!docs/**'
jobs:
build:
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit 412f246

Please sign in to comment.