Skip to content

Commit

Permalink
update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
rettigl committed Dec 19, 2024
1 parent a0cb7ed commit 9b7abb5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ on:
push:
branches: [ main ]
paths:
- specsanalyzer/**/*
- specsscan/**/*
- src/specsanalyzer/**/*
- src/specsscan/**/*
- tutorial/**
- .github/workflows/documentation.yml
# Allows you to run this workflow manually from the Actions tab
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ jobs:
# Linting steps, execute all linters even if one fails
- name: ruff
run:
ruff check specsanalyzer specsscan tests
ruff check src/specsanalyzer src/specsscan tests
- name: ruff formatting
if: ${{ always() }}
run:
ruff format --check specsanalyzer specsscan tests
ruff format --check src/specsanalyzer src/specsscan tests
- name: mypy
if: ${{ always() }}
run:
mypy specsanalyzer specsscan tests
mypy src/specsanalyzer src/specsscan tests
- name: spellcheck
if: ${{ always() }}
uses: streetsidesoftware/cspell-action@v6
Expand Down

0 comments on commit 9b7abb5

Please sign in to comment.