Skip to content

Commit

Permalink
refactor(ci): move unit test execution past linting
Browse files Browse the repository at this point in the history
  • Loading branch information
gnikit committed May 4, 2024
1 parent 6759192 commit d338b67
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ jobs:
- name: Setup
run: pip install .[dev]

- name: Unittests
run: pytest --doctest-modules

- name: Lint
run: black --diff --check --verbose .

Expand All @@ -35,6 +32,9 @@ jobs:
python3 -m fortls.schema
git diff --exit-code ./fortls/fortls.schema.json
- name: Unittests
run: pytest --doctest-modules

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
Expand Down

0 comments on commit d338b67

Please sign in to comment.