build(debian): disable make check by default on pkg build.

Enable it manually in github action.
This commit is contained in:
Alexandre Pujol 2024-11-12 22:31:16 +00:00
parent 4c5761ee71
commit f814bb4caf
No known key found for this signature in database
GPG key ID: C5469996F0DF68EC
2 changed files with 13 additions and 0 deletions

View file

@ -3,6 +3,16 @@ name: Ubuntu
on: [push, pull_request, workflow_dispatch]
jobs:
check:
runs-on: ubuntu-24.04
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Run basic profile linter check
run: |
make check
build:
runs-on: ${{ matrix.os }}
strategy: