Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/Documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ on:
pull_request:
branches:
- 'main'
types:
- opened
- reopened
- synchronize
- ready_for_review

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
Expand Down
15 changes: 13 additions & 2 deletions .github/workflows/Downstream.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,24 @@
name: IntegrationTest

on:
push:
tags:
- '*'
branches:
- 'main'
pull_request:
branches:
- 'main'
paths:
- '.github/workflows/Downstream.yml'
- 'src/**'
- 'ext/**'
- 'test/**'
- 'Project.toml'
types:
- opened
- reopened
- synchronize
- ready_for_review

concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/Format.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
name: format-check

on:
push:
branches:
- 'main'
tags: '*'
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review

jobs:
build:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/SpellCheck.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Spell Check

on: [pull_request]
on:
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review

jobs:
typos-check:
Expand Down
15 changes: 13 additions & 2 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,24 @@
name: Tests

on:
push:
tags:
- '*'
branches:
- 'main'
pull_request:
branches:
- 'main'
paths:
- '.github/workflows/Tests.yml'
- 'src/**'
- 'ext/**'
- 'test/**'
- 'Project.toml'
types:
- opened
- reopened
- synchronize
- ready_for_review

concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
Expand Down
15 changes: 13 additions & 2 deletions .github/workflows/downgrade.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,24 @@
name: Downgrade

on:
push:
tags:
- '*'
branches:
- 'main'
pull_request:
branches:
- 'main'
paths:
- '.github/workflows/downgrade.yml'
- 'src/**'
- 'ext/**'
- 'test/**'
- 'Project.toml'
types:
- opened
- reopened
- synchronize
- ready_for_review

jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
Expand Down
Loading