Skip to content

cima/server: support the environment without ima enabled #21

cima/server: support the environment without ima enabled

cima/server: support the environment without ima enabled #21

name: Python License Check
on:
pull_request:
paths:
- 'sdk/python3/**'
workflow_dispatch:
jobs:
python-license-scan:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- name: License Check
run: |
set -ex
python3 -m pip install liccheck
for f in $(find -type f -name "requirements.txt"); do
python3 -m pip install -r $f
liccheck -s .github/.license_check.ini -r $f
done