Created
October 1, 2020 17:56
-
-
Save veganstraightedge/6d5b316f061a144106c5d2da65fbfba0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push] | |
name: License Finder | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Set up Ruby 2.6 | |
uses: ruby/setup-ruby@master | |
- name: Install dependencies | |
run: | | |
gem install license_finder --no-document | |
- name: Run license finder | |
run: | | |
license_finder |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment