This repository has been archived by the owner on Sep 13, 2024. It is now read-only.
Fix SMS Segment Ordering Issue in smsdb_put #161
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
# | |
# Building chan_quectel | |
# | |
name: Build channel | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [ "master" ] | |
push: | |
jobs: | |
formatting-check: | |
name: Formatting Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: jidicula/[email protected] | |
with: | |
clang-format-version: 17 | |
check-path: src | |
build: | |
runs-on: ubuntu-latest | |
needs: formatting-check | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: ./.github/actions/install-required-packages | |
- name: Configure project | |
run: cmake -P make-build-dir.cmake | |
- name: Build | |
run: cmake -P build-chan-quectel.cmake |