LicenseCheck
LicenseCheck copied to clipboard
Question: Use with GitHub Actions and uv
Before You Begin
Before proceeding, please make sure to follow these steps:
- [x] I have checked for similar questions in the project's issue tracker to avoid duplicates.
- [x] I have searched existing issues to see if this question has been asked before.
Your Question
When I uv run licensecheck -0 locally I see List Of Packages and everything works.
When I run on GitHub Actions, I get No packages.
I have absolutely no idea why, everything seems to be consistent.
Creating this issue just in case anyone else sees the same.
jobs:
licensecheck:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Install dependencies
run: uv sync
- name: Check licenses
run: uv run licensecheck -0