neiam /action-setup-beam
action-setup-beam
public · Issues · Pulls · Labels · Forks · Compare · Actions queued
⭐
Log in to mark this repository.
Merge pull request #1 from actions/licensed-workflow
78abf8c · Jonathan Clem · 2019-08-28 21:43
Message
{commit_body(@commit)}
Files changed
added
.github/workflows/licensed.yml
+19
−0
@@ -0,0 +1,19 @@
| 1 | +name: Licensed | |
| 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: Check licenses | |
| 12 | + steps: | |
| 13 | + - uses: actions/checkout@v1.0.0 | |
| 14 | + - run: |- | |
| 15 | + cd /tmp | |
| 16 | + curl -Lfs -o licensed.tar.gz https://github.com/github/licensed/releases/download/2.3.2/licensed-2.3.2-linux-x64.tar.gz | |
| 17 | + sudo tar -xzf licensed.tar.gz | |
| 18 | + sudo mv licensed /usr/local/bin/licensed | |
| 19 | + - run: licensed status |
modified
README.md
+1
−0
@@ -1,6 +1,7 @@
| 1 | 1 | # setup-elixir |
| 2 | 2 | |
| 3 | 3 | [](https://github.com/actions/setup-elixir/actions) |
| 4 | +[](https://github.com/actions/setup-elixir/actions) | |
| 4 | 5 | |
| 5 | 6 | This actions sets up an Elixir environment for use in Actions by: |
| 6 | 7 |