Manuel Bustillo
56a8be21cc
Some checks failed
Build Nginx-based docker image / build-static-assets (pull_request) Has been cancelled
Add copyright notice / copyright_notice (pull_request) Failing after 44s
Check usage of free licenses / build-static-assets (pull_request) Failing after 18s
Run unit tests / unit_tests (pull_request) Failing after 44s
24 lines
556 B
YAML
24 lines
556 B
YAML
name: Check usage of free licenses
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
concurrency:
|
|
group: ${{ github.ref }}
|
|
cancel-in-progress: true
|
|
jobs:
|
|
build-static-assets:
|
|
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
|