Skip to content

Commit 120d920

Browse files
authored
Merge pull request #194 from helmet91/cli-recommendation-for-syntax-highlighting
add syntax highlighter plugin API and syntect plugin
2 parents 7b3cc56 + a6886b7 commit 120d920

File tree

17 files changed

+853
-34
lines changed

17 files changed

+853
-34
lines changed

.github/workflows/rust.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [push, pull_request]
44

55

66
jobs:
7-
build:
7+
build_test_spec:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
@@ -22,6 +22,22 @@ jobs:
2222
run: env SPEC=false script/cibuild
2323
- name: Run spec tests
2424
run: env SPEC=true script/cibuild
25+
no_features_build_test:
26+
runs-on: ubuntu-latest
27+
strategy:
28+
matrix:
29+
rust:
30+
- nightly
31+
- beta
32+
- stable
33+
steps:
34+
- uses: actions/checkout@v1
35+
with:
36+
submodules: true
37+
- name: Obtain Rust
38+
run: rustup override set ${{ matrix.rust }}
39+
- name: Build and test with no features
40+
run: cargo test --no-default-features --tests
2541
clippy_format:
2642
runs-on: ubuntu-latest
2743
strategy:

0 commit comments

Comments
 (0)