1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-02 03:12:25 +01:00

CICD: Add check for accidental inclusion of GPL:ed code

This commit is contained in:
Martin Nordholts
2021-11-28 19:03:30 +01:00
parent 3338699257
commit ce89fb2751
2 changed files with 33 additions and 0 deletions

View File

@@ -27,6 +27,15 @@ jobs:
- uses: actions/checkout@v2
- run: cargo fmt -- --check
license_checks:
name: License checks
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
submodules: true # we especially want to perform license checks on submodules
- run: tests/scripts/license-checks.sh
min_version:
name: Minimum supported rust version
runs-on: ubuntu-20.04