added member frame for class object #67
This file contains hidden or 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
| name: Develop | |
| on: [push, pull_request] | |
| jobs: | |
| linux-all-steps: | |
| if: github.ref != 'refs/heads/release' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup Dependencies | |
| run: | | |
| sudo apt-get install -y \ | |
| flatpak \ | |
| libgtest-dev \ | |
| cmake-format \ | |
| clang-tidy \ | |
| cppcheck \ | |
| lcov | |
| # - name: Format Check | |
| # run: ${{github.workspace}}/format-check.sh | |
| # - name: CppCheck | |
| # run: ${{github.workspace}}/cppcheck.sh | |
| - name: Build Develop | |
| run: ${{github.workspace}}/build.sh dev | |
| - name: Run with ASAN | |
| run: ${{github.workspace}}/run.sh dev | |
| # - name: Clang Tidy | |
| # run: ${{github.workspace}}/clang-tidy.sh | |
| - name: Build Tests | |
| run: ${{github.workspace}}/build.sh test | |
| - name: Run Tests | |
| run: ${{github.workspace}}/run.sh test | |
| - name: Unit Tests Coverage | |
| run: ${{github.workspace}}/unit-tests-coverage.sh | |
| macos-only-build: | |
| if: github.ref != 'refs/heads/release' | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Build Release | |
| run: ${{github.workspace}}/build.sh rel | |
| windows-only-build: | |
| if: github.ref != 'refs/heads/release' | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Build Release | |
| run: ${{github.workspace}}/build.sh rel |