Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(lib): fully refactor the library for v3 #117

Open
wants to merge 22 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
6531ec5
chore(lib): fully refactor the library for v3
jeertmans Apr 19, 2024
eef5101
fix(docs): CHANGELOG.md
jeertmans Sep 19, 2024
153b454
fix(docs): CHANGELOG.md
jeertmans Sep 19, 2024
dccdcbc
fix(ci): remove PDM install
jeertmans Sep 28, 2024
d411823
chore(lib): continuation of v3 refactor (see #117) (#120)
Rolv-Apneseth Sep 28, 2024
df0130b
fix(lib): remove duplicate key
jeertmans Sep 29, 2024
039af11
fix(ci): add codecov token
jeertmans Sep 29, 2024
a7247e4
Merge branch 'main' into v3
jeertmans Sep 29, 2024
a067522
refactor: further separate CLI logic from the API related functionali…
Rolv-Apneseth Nov 16, 2024
a90bd15
refactor: remove unnecessary code duplication from `cli/check`
Rolv-Apneseth Nov 16, 2024
ccb494a
ci: include newer versions of `languagetool` in tests (#126)
Rolv-Apneseth Nov 16, 2024
1665a9d
refactor(lib): consolidate `reqwest` errors (#125)
Rolv-Apneseth Dec 1, 2024
82bd45b
feat: add support for HTML, Markdown and Typst files (#127)
Rolv-Apneseth Jan 27, 2025
027f1ed
chore(lib): cleanup and logging
jeertmans Feb 3, 2025
6cae2f4
fix(tests): increase size of request
jeertmans Feb 3, 2025
cf9462b
fix(tests): set env to limit max text length
jeertmans Feb 3, 2025
4bb3d90
refactor: merge changes from master branch to v3 (#135)
Rolv-Apneseth Mar 11, 2025
8ad8995
chore(cli): reading from STDIN info. text is now written as logs
jeertmans Mar 12, 2025
9b3024d
chore(dev): improving coverage
jeertmans Mar 12, 2025
d14c0b9
Merge remote-tracking branch 'origin/main' into v3
jeertmans Mar 12, 2025
7e9e6cc
fix(tests): enforce language
jeertmans Mar 12, 2025
ea24862
up
jeertmans Mar 12, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ jobs:
- name: Upload to codecov.io
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
15 changes: 8 additions & 7 deletions .github/workflows/languagetool.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
name: LanguageTool

on:
pull_request:
path: |
"README.md"
workflow_dispatch:

name: LanguageTool check

jobs:
languagetool_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: reviewdog/action-languagetool@v1
- name: Checkout repository
uses: actions/checkout@v4

- name: Check and report
uses: reviewdog/action-languagetool@v1
with:
reporter: github-pr-review
patterns: README.md
patterns: '*.md src/**.rs'
level: warning
54 changes: 54 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# Lint code and (optionally) apply fixes
name: Lint code

on:
pull_request:
push:
branches: [main]
schedule:
- cron: 0 0 * * 1 # Every monday
workflow_dispatch:

jobs:
auto-update:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install pre-commit
run: pip install pre-commit

- name: Run autoupdate
run: pre-commit autoupdate

- name: Create a pull request with updated versions
uses: peter-evans/create-pull-request@v6
with:
branch: update/pre-commit-hooks
title: 'chore(deps): update pre-commit hooks'
commit-message: 'chore(deps): update pre-commit hooks'
pre-commit:
runs-on: ubuntu-latest
if: ${{ github.event_name != 'schedule' }}
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install Rust nightly
uses: dtolnay/rust-toolchain@nightly
with:
components: clippy,rustfmt

- name: Run pre-commit hooks
uses: pre-commit/[email protected]

- name: Apply fixes when present
uses: pre-commit-ci/[email protected]
if: always()
with:
msg: 'chore(fmt): auto fixes from pre-commit hooks'
10 changes: 4 additions & 6 deletions .github/workflows/CI.yml → .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,8 @@ jobs:
toolchain: stable
override: true

- run: cargo publish --features full --token ${CRATES_TOKEN}
env:
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}
- name: Publish on crates.io
run: cargo publish --features full --token ${{ secrets.CRATES_TOKEN }}
check-publish:
name: Check Publish
runs-on: ubuntu-latest
Expand All @@ -42,6 +41,5 @@ jobs:
toolchain: stable
override: true

- run: cargo publish --features cli --token ${CRATES_TOKEN} --dry-run -v
env:
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}
- name: Check if can publish on crates.io
run: cargo publish --features cli --token ${{ secrets.CRATES_TOKEN }} --dry-run -v
6 changes: 4 additions & 2 deletions .github/workflows/rustlib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,15 @@ jobs:
strategy:
fail-fast: false
matrix:
tag: [latest, '5.5', '5.6', '5.7', '5.8', '5.9', '6.0', '6.1']
tag: [latest, '5.5', '5.6', '5.7', '5.8', '5.9', '6.0', '6.1', '6.2', '6.3', '6.4', '6.5']
runs-on: ubuntu-latest
services:
languagetool:
image: erikvl87/languagetool:${{ matrix.tag }}
ports:
- 8010:8010
env:
langtool_maxTextLength: 1500
env:
LANGUAGETOOL_HOSTNAME: http://localhost
LANGUAGETOOL_PORT: 8010
Expand All @@ -51,4 +53,4 @@ jobs:
uses: Swatinem/rust-cache@v2

- run: curl -LsSf https://get.nexte.st/latest/linux | tar zxf - -C ${CARGO_HOME:-~/.cargo}/bin
- run: cargo nextest run --all-features
- run: cargo nextest run --all-features --no-capture
39 changes: 0 additions & 39 deletions .github/workflows/rustlints.yml

This file was deleted.

32 changes: 25 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,38 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.6.0
hooks:
- id: check-yaml
- id: check-toml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.35.0
hooks:
- id: markdownlint-fix
args: [--ignore, LICENSE.md]
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
rev: v2.10.0
rev: v2.13.0
hooks:
- id: pretty-format-yaml
args: [--autofix]
- id: pretty-format-toml
args: [--autofix]
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.35.0
args: [--autofix, --trailing-commas]
- repo: https://github.com/doublify/pre-commit-rust
rev: v1.0
hooks:
- id: markdownlint-fix
args: [--ignore, LICENSE.md]
- id: cargo-check
- id: clippy
- repo: local
hooks:
- id: fmt
name: fmt
description: Format files with cargo fmt
entry: cargo +nightly fmt --
language: system
types: [rust]
args: []
- repo: https://github.com/codespell-project/codespell
rev: v2.2.6
hooks:
- id: codespell
Loading
Loading