Skip to content

Commit

Permalink
feat: add french support and ci
Browse files Browse the repository at this point in the history
  • Loading branch information
petit-chat committed Oct 14, 2024
1 parent cbfb0d7 commit 8e073e1
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 2 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Continous Integration

Check failure on line 1 in .github/workflows/ci.yaml

View workflow job for this annotation

GitHub Actions / Check Spelling

`workflows` is not a recognized word. (check-file-path)

Check failure on line 1 in .github/workflows/ci.yaml

View workflow job for this annotation

GitHub Actions / Check Spelling

`yaml` is not a recognized word. (check-file-path)

Check failure on line 1 in .github/workflows/ci.yaml

View workflow job for this annotation

GitHub Actions / Check Spelling

`Continous` is not a recognized word. (unrecognized-spelling)

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
broken-links:
name: Check for Broken Links
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Check the links
uses: lycheeverse/lychee-action@v1

Check failure on line 20 in .github/workflows/ci.yaml

View workflow job for this annotation

GitHub Actions / Check Spelling

`lycheeverse` is not a recognized word. (unrecognized-spelling)

Check notice on line 20 in .github/workflows/ci.yaml

View workflow job for this annotation

GitHub Actions / Check Spelling

`Line` matches candidate pattern `\buses:\s+[-\w.]+/[-\w./]+@[-\w.]+` (candidate-pattern)
with:
fail: true
token: ${{ secrets.GITHUB_TOKEN }}

check-spelling:
name: Check Spelling
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Check Spelling
uses: check-spelling/check-spelling@main
with:
checkout: false
check_file_names: 1
spell_check_this: check-spelling/spell-check-this@prerelease
post_comment: 0
report-timing: 1
warnings: bad-regex,binary-file,deprecated-feature,large-file,limited-references,no-newline-at-eof,noisy-file,non-alpha-in-dictionary,token-is-substring,unexpected-line-ending,whitespace-in-dictionary,minified-file,unsupported-configuration,no-files-to-check

Check failure on line 40 in .github/workflows/ci.yaml

View workflow job for this annotation

GitHub Actions / Check Spelling

`regex` is not a recognized word. (unrecognized-spelling)
extra_dictionary_limit: 1
extra_dictionaries:
cspell:fr_FR/src/hunspell-french-dictionaries-v7.0/fr-toutesvariantes.dic
3 changes: 3 additions & 0 deletions README.fr.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# awesome-dofus-3

Check failure on line 1 in README.fr.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`README` is not a recognized word. (check-file-path)

Liste de resources pour vous aider a maitriser Dofus 3 a.k.a Dofus Unity.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# awesome-dofus
Curated list of resources to help you master Dofus
# awesome-dofus-3

Check failure on line 1 in README.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`dofus` is not a recognized word. (unrecognized-spelling)

Check failure on line 1 in README.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`README` is not a recognized word. (check-file-path)

Curated list of resources to help you master Dofus 3 a.k.a Dofus Unity.

Check failure on line 3 in README.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`Curated` is not a recognized word. (unrecognized-spelling)

Check failure on line 3 in README.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`Dofus` is not a recognized word. (unrecognized-spelling)

0 comments on commit 8e073e1

Please sign in to comment.