mirror of
https://github.com/awslabs/aws-crt-php.git
synced 2026-08-18 18:13:09 +00:00
* Made PHP extension compile with openssl * Use catchsegv to dump a callstack * Updated to use aws_crt_crypto_share() * Much faster builds by making cmake parallel if supported * Make sure all CRT threads shutdown prior to cleanup * USE_OPENSSL should be the path to openssldir * Updated to aws-crt-ffi v0.2.4
30 lines
583 B
YAML
30 lines
583 B
YAML
name: Lint
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
clang-format:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout Sources
|
|
uses: actions/checkout@v1
|
|
|
|
- name: clang-format lint
|
|
uses: DoozyX/[email protected]
|
|
with:
|
|
# List of extensions to check
|
|
extensions: c
|
|
|
|
check-submodules:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Source
|
|
uses: actions/checkout@v2
|
|
with:
|
|
submodules: true
|
|
fetch-depth: 0
|
|
- name: Check Submodules
|
|
uses: awslabs/aws-crt-builder/.github/actions/check-submodules@main
|