File tree 3 files changed +14
-12
lines changed
3 files changed +14
-12
lines changed Original file line number Diff line number Diff line change @@ -10,13 +10,14 @@ jobs:
10
10
check_duplicate_runs :
11
11
name : Check for duplicate runs
12
12
continue-on-error : true
13
- runs-on : ubuntu-latest
13
+ runs-on : ubuntu-20.04
14
14
outputs :
15
15
should_skip : ${{ steps.skip_check.outputs.should_skip }}
16
16
steps :
17
17
- id : skip_check
18
18
uses : fkirc/skip-duplicate-actions@master
19
19
with :
20
+ github_token : ${{ github.token }}
20
21
concurrent_skipping : always
21
22
cancel_others : true
22
23
skip_after_successful_duplicate : true
@@ -25,24 +26,25 @@ jobs:
25
26
26
27
test :
27
28
name : Elixir ${{matrix.elixir}} / OTP ${{matrix.otp}}
28
- runs-on : ubuntu-latest
29
+ runs-on : ubuntu-20.04
29
30
needs : check_duplicate_runs
30
31
if : ${{ needs.check_duplicate_runs.outputs.should_skip != 'true' }}
31
32
32
33
strategy :
33
34
fail-fast : false
34
35
matrix :
35
36
elixir :
36
- - ' 1.10.4 '
37
- - ' 1.11 .4'
38
- - ' 1.12.2 '
37
+ - ' 1.12.3 '
38
+ - ' 1.13 .4'
39
+ - ' 1.14.3 '
39
40
otp :
40
- - ' 22.3'
41
41
- ' 23.3'
42
- - ' 24.0'
42
+ - ' 24.3'
43
+ - ' 25.3'
44
+
43
45
exclude :
44
- - elixir : ' 1.10.4 '
45
- otp : ' 24.0 '
46
+ - elixir : ' 1.12.3 '
47
+ otp : ' 25.3 '
46
48
47
49
steps :
48
50
- name : Checkout
Original file line number Diff line number Diff line change 1
- elixir 1.12.2
2
- erlang 24.0.5
1
+ elixir 1.14.3-otp-25
2
+ erlang 25.2.2
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ defmodule Dialyxir.Project do
42
42
43
43
def cons_apps do
44
44
# compile & load all deps paths
45
- Mix.Tasks.Deps.Loadpaths . run ( [ ] )
45
+ _ = Mix.Tasks.Deps.Loadpaths . run ( [ ] )
46
46
# compile & load current project paths
47
47
Mix.Task . run ( "compile" )
48
48
apps = plt_apps ( ) || plt_add_apps ( ) ++ include_deps ( )
You can’t perform that action at this time.
0 commit comments