Skip to content

Commit 83d6ee7

Browse files
committed
Initial commit
0 parents  commit 83d6ee7

File tree

210 files changed

+15020
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

210 files changed

+15020
-0
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/** -diff linguist-generated=true

.github/workflows/test.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Test
2+
3+
on:
4+
push: {branches: master}
5+
pull_request: {branches: master}
6+
repository_dispatch:
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
name: OTP ${{matrix.pair.otp-version}} / Elixir ${{matrix.pair.elixir-version}}
12+
strategy:
13+
matrix:
14+
pair:
15+
# Full Versions
16+
- otp-version: 22.0
17+
elixir-version: 1.9.1
18+
# Semver ranges
19+
- otp-version: 21.x
20+
elixir-version: <1.9.1
21+
steps:
22+
- uses: actions/[email protected]
23+
- name: Use actions/setup-elixir
24+
uses: ./
25+
with:
26+
otp-version: ${{matrix.pair.otp-version}}
27+
elixir-version: ${{matrix.pair.elixir-version}}
28+
- name: Run Mix project tests
29+
run: |-
30+
cd test-project
31+
mix deps.get
32+
mix test

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
!node_modules

.licensed.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
sources:
2+
npm: true
3+
4+
allowed:
5+
- apache-2.0
6+
- bsd-2-clause
7+
- bsd-3-clause
8+
- isc
9+
- mit
10+
- cc0-1.0
11+
- unlicense
12+
13+
reviewed:
14+
npm:
15+
- typed-rest-client # MIT
16+
- underscore # MIT
17+

.licenses/npm/@actions/core.dep.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: "@actions/core"
3+
version: 1.0.0
4+
type: npm
5+
summary: Actions core lib
6+
homepage: https://github.com/actions/toolkit/tree/master/packages/core
7+
license: mit
8+
licenses:
9+
- sources: LICENSE.md
10+
text: "Copyright 2019 GitHub\r\n\r\nPermission is hereby granted, free of charge,
11+
to any person obtaining a copy of this software and associated documentation files
12+
(the \"Software\"), to deal in the Software without restriction, including without
13+
limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
14+
and/or sell copies of the Software, and to permit persons to whom the Software
15+
is furnished to do so, subject to the following conditions:\r\n\r\nThe above copyright
16+
notice and this permission notice shall be included in all copies or substantial
17+
portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY
18+
OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
20+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23+
SOFTWARE."
24+
notices: []

.licenses/npm/@actions/exec.dep.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: "@actions/exec"
3+
version: 1.0.0
4+
type: npm
5+
summary: Actions exec lib
6+
homepage: https://github.com/actions/toolkit/tree/master/packages/exec
7+
license: mit
8+
licenses:
9+
- sources: LICENSE.md
10+
text: "Copyright 2019 GitHub\r\n\r\nPermission is hereby granted, free of charge,
11+
to any person obtaining a copy of this software and associated documentation files
12+
(the \"Software\"), to deal in the Software without restriction, including without
13+
limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
14+
and/or sell copies of the Software, and to permit persons to whom the Software
15+
is furnished to do so, subject to the following conditions:\r\n\r\nThe above copyright
16+
notice and this permission notice shall be included in all copies or substantial
17+
portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY
18+
OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
20+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23+
SOFTWARE."
24+
notices: []

.licenses/npm/@actions/io.dep.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: "@actions/io"
3+
version: 1.0.0
4+
type: npm
5+
summary: Actions io lib
6+
homepage: https://github.com/actions/toolkit/tree/master/packages/io
7+
license: mit
8+
licenses:
9+
- sources: LICENSE.md
10+
text: "Copyright 2019 GitHub\r\n\r\nPermission is hereby granted, free of charge,
11+
to any person obtaining a copy of this software and associated documentation files
12+
(the \"Software\"), to deal in the Software without restriction, including without
13+
limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
14+
and/or sell copies of the Software, and to permit persons to whom the Software
15+
is furnished to do so, subject to the following conditions:\r\n\r\nThe above copyright
16+
notice and this permission notice shall be included in all copies or substantial
17+
portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY
18+
OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
20+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23+
SOFTWARE."
24+
notices: []
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: '@actions/tool-cache'
3+
version: 1.1.0
4+
type: npm
5+
summary: Actions tool-cache lib
6+
homepage: https://github.com/actions/toolkit/tree/master/packages/exec
7+
license: mit
8+
licenses:
9+
- sources: LICENSE.md
10+
text:
11+
"Copyright 2019 GitHub\r\n\r\nPermission is hereby granted, free of charge,
12+
to any person obtaining a copy of this software and associated documentation files
13+
(the \"Software\"), to deal in the Software without restriction, including without
14+
limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
15+
and/or sell copies of the Software, and to permit persons to whom the Software
16+
is furnished to do so, subject to the following conditions:\r\n\r\nThe above copyright
17+
notice and this permission notice shall be included in all copies or substantial
18+
portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY
19+
OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
21+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24+
SOFTWARE."
25+
notices: []

.licenses/npm/semver.dep.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
name: semver
3+
version: 6.3.0
4+
type: npm
5+
summary: The semantic version parser used by npm.
6+
homepage: https://github.com/npm/node-semver#readme
7+
license: isc
8+
licenses:
9+
- sources: LICENSE
10+
text: |
11+
The ISC License
12+
13+
Copyright (c) Isaac Z. Schlueter and Contributors
14+
15+
Permission to use, copy, modify, and/or distribute this software for any
16+
purpose with or without fee is hereby granted, provided that the above
17+
copyright notice and this permission notice appear in all copies.
18+
19+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
20+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
21+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
22+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
23+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
24+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
25+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
26+
notices: []

.licenses/npm/tunnel.dep.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
name: tunnel
3+
version: 0.0.4
4+
type: npm
5+
summary: Node HTTP/HTTPS Agents for tunneling proxies
6+
homepage: https://github.com/koichik/node-tunnel/
7+
license: mit
8+
licenses:
9+
- sources: LICENSE
10+
text: |
11+
The MIT License (MIT)
12+
13+
Copyright (c) 2012 Koichi Kobayashi
14+
15+
Permission is hereby granted, free of charge, to any person obtaining a copy
16+
of this software and associated documentation files (the "Software"), to deal
17+
in the Software without restriction, including without limitation the rights
18+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
19+
copies of the Software, and to permit persons to whom the Software is
20+
furnished to do so, subject to the following conditions:
21+
22+
The above copyright notice and this permission notice shall be included in
23+
all copies or substantial portions of the Software.
24+
25+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
26+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
28+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
29+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
30+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
31+
THE SOFTWARE.
32+
- sources: README.md
33+
text: Licensed under the [MIT](https://github.com/koichik/node-tunnel/blob/master/LICENSE)
34+
license.
35+
notices: []

0 commit comments

Comments
 (0)