Drop aspell dictionary from Linux workflow

This commit is contained in:
Veronica Berglyd Olsen
2025-03-30 23:49:48 +02:00
parent d0c8227d15
commit 9715955618
2 changed files with 5 additions and 3 deletions
+4 -2
View File
@@ -21,12 +21,14 @@ jobs:
architecture: x64
- name: Checkout Source
uses: actions/checkout@v4
- name: Install flake8
- name: Install Dependencies
run: pip install -r requirements.txt -r requirements-dev.txt
- name: Syntax Check
- name: Run Flake8
run: |
flake8 --version
flake8 novelwriter --count --show-source --statistics
flake8 tests --count --show-source --statistics --extend-ignore ANN
- name: Run Pyright
run: |
pyright --version
pyright
+1 -1
View File
@@ -26,7 +26,7 @@ jobs:
- name: Install Packages (apt)
run: |
sudo apt update
sudo apt install libenchant-2-dev qttools5-dev-tools aspell-en
sudo apt install libenchant-2-dev qttools5-dev-tools
- name: Checkout Source
uses: actions/checkout@v4
- name: Install Dependencies (pip)