diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml new file mode 100644 index 0000000..a383a52 --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,23 @@ +name: C/C++ CI + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..7e257db --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,3 @@ +{ + "recommendations": [] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..f30ffcb --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,8 @@ +{ + "makefile.alwaysPostConfigure": true, + "makefile.alwaysPreConfigure": true, + "dotnetAcquisitionExtension.existingDotnetPath": [ + autoDetect + + ] +} \ No newline at end of file diff --git a/WirelessCarPlay.code-workspace b/WirelessCarPlay.code-workspace new file mode 100644 index 0000000..104fb52 --- /dev/null +++ b/WirelessCarPlay.code-workspace @@ -0,0 +1,13 @@ +{ + "folders": [ + { + "path": "." + }, + { + "path": "../.codespaces" + } + ], + "settings": { + "dotnetAcquisitionExtension.existingDotnetPath": [] + } +} \ No newline at end of file