We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f602464 commit 8e9330bCopy full SHA for 8e9330b
.github/workflows/housekeeping.yml
@@ -65,3 +65,22 @@ jobs:
65
elixir-version: 1.16.2
66
- run: mix deps.get
67
- run: ASSERT_TRIGGERS=1 mix test
68
+
69
+ compare_to_latest_credo:
70
+ name: "resulting issues are still the same (optional)"
71
+ runs-on: ubuntu-20.04
72
+ steps:
73
+ - uses: actions/checkout@v4
74
+ with:
75
+ fetch-depth: 0
76
+ - uses: erlef/setup-beam@v1
77
78
+ otp-version: 26.2
79
+ elixir-version: 1.16.2
80
+ - run: mix deps.get
81
+ - run: mix credo
82
+ - run: mkdir tmp
83
+ - run: elixir test/old_credo.exs > tmp/old_credo.txt
84
+ - run: mix credo --strict --enable-disabled-checks .+ --no-color --format oneline > tmp/new_credo.txt
85
+ - run: diff tmp/old_credo.txt tmp/new_credo.txt
86
0 commit comments