Skip to content

Commit

Permalink
Merge pull request #61 from SublimeText/feature/syntax-test-action
Browse files Browse the repository at this point in the history
Use SublimeText/syntax-test-action for CI
  • Loading branch information
FichteFoll committed Aug 7, 2024
2 parents c1bcc4f + ec86594 commit 99e20d5
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 49 deletions.
49 changes: 0 additions & 49 deletions .github/workflows/ci.yaml

This file was deleted.

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

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

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 99e20d5

Please sign in to comment.