name: Main LMDBAL workfow run-name: ${{ gitea.actor }} is running LMDBAL main workflow on: [push] jobs: Compile: runs-on: archlinux steps: - name: Check out repository code uses: actions/checkout@v3 - name: Make a build directory run: mkdir build - name: Configure run: cd build & cmake .. -D BUILD_TESTS=True -D BUILD_DOC=True -D BUILD_DOXYGEN_AWESOME=True -D QT_VERSION_MAJOR=5 - name: Build run: cd build & cmake --build . - name: Status run: echo "${{ job.status }}"