Skip to content

Commit

Permalink
Add housekeeping task for deps compile warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
rrrene committed Nov 5, 2024
1 parent c6276a3 commit 3010702
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/housekeeping.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,20 @@ jobs:
- run: mix deps.get
- run: ASSERT_TRIGGERS=1 mix test

no_deps_compiler_warnings:
name: "compiling deps shows no compiler warnings (optional)"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: erlef/setup-beam@v1
with:
otp-version: 26.2
elixir-version: 1.17.3
- run: mix deps.get
- run: mix deps.compile 2>&1 | ./test/error_if_warnings.sh

compare_to_latest_credo:
name: "resulting issues are still the same (optional)"
runs-on: ubuntu-20.04
Expand Down

0 comments on commit 3010702

Please sign in to comment.