Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
vtm9 committed Feb 21, 2025
1 parent 070c0d9 commit ca90a67
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 13 deletions.
19 changes: 8 additions & 11 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,19 +42,16 @@ jobs:
otp-version: "27.2"
elixir-version: "1.18.2"

- name: Restore Dependencies Cache
- name: Cache Dependencies
uses: actions/cache@v4
id: deps-cache
with:
path: ./services/app/deps
key: ${{ runner.os }}-deps-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-deps-

- name: Restore Build Cache
uses: actions/cache@v4
with:
path: ./services/app/_build
key: ${{ runner.os }}-build-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-build-
path: |
./services/app/deps
./services/app/_build
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: |
${{ runner.os }}-mix-
- name: Get deps
run: |
Expand Down
3 changes: 1 addition & 2 deletions services/app/.credo.exs
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@
# You can customize the priority of any check
# Priority values are: `low, normal, high, higher`
#
{Credo.Check.Design.AliasUsage,
[priority: :low, if_nested_deeper_than: 4, if_called_more_often_than: 0]},
{Credo.Check.Design.AliasUsage, [priority: :low, if_nested_deeper_than: 4, if_called_more_often_than: 0]},
# You can also customize the exit_status of each check.
# If you don't want TODO comments to cause `mix credo` to fail, just
# set this value to 0 (zero).
Expand Down

0 comments on commit ca90a67

Please sign in to comment.