Skip to content

Commit

Permalink
Exclude compose directory from some build checks where it has its own.
Browse files Browse the repository at this point in the history
  • Loading branch information
zach-klippenstein committed Feb 4, 2021
1 parent cc1c631 commit 526d9b5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/compose-kotlin.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
name: Kotlin CI
name: Compose CI

on:
push:
paths:
- 'compose/**'
- '.github/workflows/compose-kotlin.yml'
branches: [main]
pull_request:
paths:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/kotlin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
paths-ignore:
# Don't build the entire app when just changing tutorials, which have their own workflow.
- 'samples/tutorial/**'
# The compose integration has its own workflow.
- 'compose/**'

jobs:
dokka:
Expand Down
1 change: 1 addition & 0 deletions lint_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ find . \
-not -name 'CHANGELOG.md' \
-not -path './.github/*' \
-not -path $TUTORIALS_DIR/'*' \
-not -path './compose/*' \
| xargs mdl --style $STYLE --ignore-front-matter \

find $TUTORIALS_DIR \
Expand Down

0 comments on commit 526d9b5

Please sign in to comment.