Add a licensed workflow

This commit is contained in:
Jonathan Clem
2019-08-28 17:25:36 -04:00
parent 83d6ee76a6
commit c8c376ebbb
2 changed files with 18 additions and 0 deletions

17
.github/workflows/licensed.yml vendored Normal file
View File

@@ -0,0 +1,17 @@
name: Licensed
on:
push: {branches: master}
pull_request: {branches: master}
repository_dispatch:
jobs:
test:
runs-on: ubuntu-latest
name: Check licenses
steps:
- uses: actions/checkout@v1.0.0
- uses: actions/setup-ruby@v1.0.2
with: {ruby-version: 3.x}
- run: gem install licensed
- run: licensed status

View File

@@ -1,6 +1,7 @@
# setup-elixir
[![](https://github.com/actions/setup-elixir/workflows/Test/badge.svg)](https://github.com/actions/setup-elixir/actions)
[![](https://github.com/actions/setup-elixir/workflows/Licensed/badge.svg)](https://github.com/actions/setup-elixir/actions)
This actions sets up an Elixir environment for use in Actions by: