Add a licensed workflow

c8c376e · Jonathan Clem · 2019-08-28 21:25

4 files +18 -0

Files changed

added .github/workflows/licensed.yml
+17 −0
@@ -0,0 +1,17 @@
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 + - uses: actions/setup-ruby@v1.0.2
15 + with: {ruby-version: 3.x}
16 + - run: gem install licensed
17 + - 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/workflows/Test/badge.svg)](https://github.com/actions/setup-elixir/actions)
4 +[![](https://github.com/actions/setup-elixir/workflows/Licensed/badge.svg)](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

Parents: 83d6ee7