Skip to content

Commit

Permalink
Use SublimeText/syntax-test-action for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
FichteFoll committed Aug 7, 2024
1 parent c1bcc4f commit 24a0b8f
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 49 deletions.
49 changes: 0 additions & 49 deletions .github/workflows/ci.yaml

This file was deleted.

31 changes: 31 additions & 0 deletions .github/workflows/syntax_tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Syntax Tests

on:
push:
paths:
- '**.sublime-syntax'
- '**/syntax_test*'
- '**.tmPreferences'
- .github/workflows/syntax_tests.yaml
pull_request:
paths:
- '**.sublime-syntax'
- '**/syntax_test*'
- '**.tmPreferences'
- .github/workflows/syntax_tests.yaml

jobs:
syntax_tests:
name: Syntax Tests (${{ matrix.build }})
runs-on: ubuntu-latest
timeout-minutes: 15 # default is 6 hours!
strategy:
matrix:
include:
- build: latest # Latest dev build
- build: 4169 # Oldest stable version we intent to support
steps:
- uses: actions/checkout@v3
- uses: SublimeText/syntax-test-action@v2
with:
build: ${{ matrix.build }}

0 comments on commit 24a0b8f

Please sign in to comment.