Manuel Bustillo
c2d721204a
All checks were successful
Check usage of free licenses / license-finder (push) Successful in 26s
22 lines
485 B
YAML
22 lines
485 B
YAML
name: Check usage of free licenses
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
jobs:
|
|
license-finder:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
- uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: '3.3'
|
|
- name: Install license finder gem
|
|
run: gem install license_finder
|
|
- name: Run license finder
|
|
run: license_finder
|
|
|