地域単位で階層構造を維持するように変更 #343
Workflow file for this run
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
# licensed というツールを使って submodule のライセンスをチェックします。 | |
# このCIに失敗する場合、 .licensed.yml という名前のファイルを見直してください。 | |
# 参考 : licensed について | |
# https://github.com/github/licensed | |
# 参考 : licensed の CI 利用について | |
# https://github.com/marketplace/actions/setup-github-licensed | |
name: Check Submodule License | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
check-submodule-license: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: checkout submodules | |
shell: bash | |
run: git submodule update --init --recursive | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ruby | |
- uses: jonabc/setup-licensed@v1 | |
with: | |
version: '4.x' | |
- run: licensed cache | |
- run: licensed status |