Skip to content

Commit 6658b83

Browse files
committed
rename the installer check
1 parent 1b4e751 commit 6658b83

File tree

3 files changed

+20
-21
lines changed

3 files changed

+20
-21
lines changed

.github/workflows/include-list-check.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/installer-sync.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: installer-sync
2+
on:
3+
push:
4+
branches: [ master ]
5+
pull_request:
6+
branches: [ master ]
7+
workflow_dispatch:
8+
9+
jobs:
10+
installer-sync:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
15+
- name: Check nanorc included every *nanorc files
16+
run: |
17+
./tool/include-list-gen.sh
18+
git diff --exit-code nanorc || exit 1

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Improved Nano Syntax Highlighting Files
22

3-
[![shellcheck](https://github.com/galenguyer/nano-syntax-highlighting/actions/workflows/shellcheck.yml/badge.svg)](https://github.com/galenguyer/nano-syntax-highlighting/actions/workflows/shellcheck.yml)
4-
[![included-all](https://github.com/galenguyer/nano-syntax-highlighting/actions/workflows/include-list-check.yml/badge.svg)](https://github.com/galenguyer/nano-syntax-highlighting/actions/workflows/include-list-check.yml)
3+
[![shellcheck](https://github.com/galenguyer/nano-syntax-highlighting/actions/workflows/shellcheck.yml/badge.svg?branch=master)](https://github.com/galenguyer/nano-syntax-highlighting/actions/workflows/shellcheck.yml)
4+
[![installer-sync](https://github.com/galenguyer/nano-syntax-highlighting/actions/workflows/installer-sync.yml/badge.svg?branch=master)](https://github.com/galenguyer/nano-syntax-highlighting/actions/workflows/installer-sync.yml)
55

66
This repository holds ``{lang}.nanorc`` files that have improved definitions of syntax highlighting for various languages.
77

0 commit comments

Comments
 (0)