-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #195 from deathaxe/st4
Rewrite Syntax for Sublime Text 4137+
- Loading branch information
Showing
22 changed files
with
3,126 additions
and
587 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,17 @@ | ||
messages/* linguist-documentation | ||
*.blade linguist-documentation | ||
*.blade.php linguist-documentation | ||
# exclude from sublime-package | ||
.github/ export-ignore | ||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
*.cmd export-ignore | ||
packages.json export-ignore | ||
|
||
# linguist documentation settings | ||
messages/* linguist-documentation | ||
*.blade linguist-documentation | ||
*.blade.php linguist-documentation | ||
|
||
# linguist language settings | ||
*.sublime-completions linguist-language=JSONC | ||
*.sublime-settings linguist-language=JSONC | ||
*.sublime-syntax linguist-language=YAML | ||
*.tmPreferences linguist-language=XML |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: CI Syntax Tests | ||
|
||
on: | ||
push: | ||
push: | ||
- '**' | ||
paths: | ||
- '.github/workflows/ci-syntax-tests.yml' | ||
- '**.sublime-syntax' | ||
- '**/syntax_test_*' | ||
- '**.tmPreferences' | ||
pull_request: | ||
branches: | ||
- '**' | ||
paths: | ||
- '.github/workflows/ci-syntax-tests.yml' | ||
- '**.sublime-syntax' | ||
- '**/syntax_test_*' | ||
- '**.tmPreferences' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
syntax_tests: | ||
name: Sublime Text ${{ matrix.build }} | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 15 # default is 6 hours! | ||
strategy: | ||
matrix: | ||
include: | ||
- build: 4137 | ||
default_packages: v4137 | ||
- build: latest | ||
default_packages: master | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: SublimeText/syntax-test-action@v2 | ||
with: | ||
build: ${{ matrix.build }} | ||
default_packages: ${{ matrix.default_packages }} |
Oops, something went wrong.