1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

ci: prevent adding GPL licensed code by accident.

This commit is contained in:
Delyan Angelov 2022-01-21 16:52:41 +02:00
parent cbd3c14e83
commit 04aab250aa
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -13,6 +13,14 @@ concurrency:
cancel-in-progress: true
jobs:
no-gpl-by-accident:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: No GPL licensed code, should be added accidentally
run: |
! grep -r --exclude="*.yml" "a GPL license" .
code-formatting-perf-regressions:
runs-on: ubuntu-20.04
timeout-minutes: 15