Skip to content
This repository has been archived by the owner on Apr 15, 2024. It is now read-only.

service/quote-server: add TDX support for quote fetching #17

service/quote-server: add TDX support for quote fetching

service/quote-server: add TDX support for quote fetching #17

Workflow file for this run

name: License Check
on:
pull_request:
workflow_dispatch:
jobs:
python-license-scan:
runs-on: self-hosted
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
liccheck -s .github/.license_check.ini -r $f
done