File tree Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change 60
60
with :
61
61
name : edoc
62
62
path : doc
63
+ docs :
64
+ strategy :
65
+ matrix :
66
+ platform : [ubuntu-latest]
67
+ otp-version : [24, 25, 26]
68
+ runs-on : ${{ matrix.platform }}
69
+ container :
70
+ image : erlang:${{ matrix.otp-version }}
71
+ steps :
72
+ - name : Checkout
73
+ uses : actions/checkout@v2
74
+ - name : Cache Hex packages
75
+ uses : actions/cache@v1
76
+ with :
77
+ path : ~/.cache/rebar3/hex/hexpm/packages
78
+ key : ${{ runner.os }}-hex-${{ hashFiles(format('{0}{1}', github.workspace, '/rebar.lock')) }}
79
+ restore-keys : |
80
+ ${{ runner.os }}-hex-
81
+ - name : Cache Dialyzer PLTs
82
+ uses : actions/cache@v1
83
+ with :
84
+ path : ~/.cache/rebar3/rebar3_*.plt
85
+ key : ${{ runner.os }}-dialyzer-${{ hashFiles(format('{0}{1}', github.workspace, '/rebar.config')) }}
86
+ restore-keys : |
87
+ ${{ runner.os }}-dialyzer-
88
+ - name : Generate docs
89
+ run : rebar3 ex_doc
Original file line number Diff line number Diff line change 1
1
% % @doc This is the main interface to the library. It provides a function
2
- % % `get_credentials/0' which should return `Credentials :: map()' or `undefined` .
2
+ % % `get_credentials/0' which should return `Credentials :: map()' or `undefined' .
3
3
% % If undefined, it will attempt to get credentials again after 5 seconds delay.
4
4
% % @end
5
5
-module (aws_credentials ).
You can’t perform that action at this time.
0 commit comments