Skip to content

Commit

Permalink
new year + spell fix
Browse files Browse the repository at this point in the history
  • Loading branch information
theshadowco committed Jan 7, 2025
1 parent cc69583 commit a7df1aa
Show file tree
Hide file tree
Showing 8 changed files with 74 additions and 20 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,18 @@ jobs:
java_version: ['17', '21']
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java_version }}
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java_version }}
distribution: 'temurin'
cache: gradle
- name: Build with Gradle
run: ./gradlew check --stacktrace
- name: Archive test results
if: failure()
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: junit_report_${{ matrix.os }}_${{ matrix.java_version }}
path: build/reports/tests/test
4 changes: 2 additions & 2 deletions .github/workflows/grammar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- name: Run yaspeller
run: |
sudo npm install yaspeller -g
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,17 @@ jobs:
runs-on: ubuntu-latest
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.event.repository.full_name
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: ''
- run: |
git fetch --prune --unshallow
- name: Set up JDK 17
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
cache: gradle
- name: SonarCloud Scan
run: ./gradlew check sonar
env:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,15 @@ jobs:
- name: Checkout source
uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
cache: gradle
- name: Build with Gradle
run: ./gradlew build
- name: Upload jar to release
uses: AButler/upload-release-assets@v1.0
uses: AButler/upload-release-assets@v3.0
with:
files: './build/libs/*.jar'
repo-token: ${{ secrets.GITHUB_TOKEN }}
64 changes: 56 additions & 8 deletions .yaspellerrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"lang": "ru",
"format": "auto",
"dictionary": [
"токен[\\W]*",
"реквест[\\W]*",
"коммит[\\W]*",
"токен.*",
"реквест.*",
"коммит.*",
"пулл",
"мерж",
"Вкл",
Expand Down Expand Up @@ -39,12 +39,60 @@
"Птн",
"Суб",
"Пн",
"вебхук[ом]*",
"тыс"
"Чт",
"веб[-]*хук[оми]*",
"тыс",
"Конкретный",
"лог[иов]*",
"соответствующим",
"применится",
"мест",
"покрыт",
"тестовых",
"установит",
"пузырькам",
"дн",
"пуст",
"ИТ",
"несоответствующий",
"код[аеому]*",
"строк[ах]*",
"строку",
"модульные",
"проект",
"Покрытые",
"отчет",
"Выключен",
"ещё",
"тестовое",
"вначале",
"будет",
"тег[и]*",
"правило",
"смогут",
"необязательно",
"монорепозиторию",
"ИИ",
"обнаружений",
"родитель",
"SSLTLS",
"CodeFix",
"isStandardMode",
"issueLink",
"operator",
"одно"
],
"ignoreText": [
"-ов",
"-ях",
"гггг-ММ-дд" // формат даты
"\\-ов",
"\\-ях",
"\\(-а\\)",
"CI",
"Build when a change is pushed to",
"гггг-ММ-дд", // формат даты
"\\{[a-z0-9A-Z_]+\\}", // параметры
"# [a-zA-Z0-9\\s\\(\\)]+", // комментарии
"[a-zA-Z][a-zA-Z0-9-\\._]{2,}[\\s=-]",
"warningsCount",
"не покрытые"
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* SilverBulleters, LLC
* mailto:[email protected]
*
* Copyright (c) 2020-2023
* Copyright (c) 2020-2025
* 1c-syntax and contributors
*
* SPDX-License-Identifier: LGPL-3.0-or-later
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* SilverBulleters, LLC
* mailto:[email protected]
*
* Copyright (c) 2020-2023
* Copyright (c) 2020-2025
* 1c-syntax and contributors
*
* SPDX-License-Identifier: LGPL-3.0-or-later
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* SilverBulleters, LLC
* mailto:[email protected]
*
* Copyright (c) 2020-2023
* Copyright (c) 2020-2025
* 1c-syntax and contributors
*
* SPDX-License-Identifier: LGPL-3.0-or-later
Expand Down

0 comments on commit a7df1aa

Please sign in to comment.