Bump typer from 0.12.4 to 0.12.5 #3744
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
name: "license-check" | |
on: | |
pull_request: | |
branches: [ '**' ] | |
jobs: | |
license-check: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Remove checkdmarc installed from CERT PL fork from requirements as it's not supported by liccheck | |
run: cp requirements.txt requirements.txt.orig; cat requirements.txt.orig | grep -v ^git+.*checkdmarc > requirements.txt | |
- name: Run liccheck | |
run: liccheck |