Skip to content

style: Fix warning

style: Fix warning #18

Workflow file for this run

name: Build
on:
- push
- pull_request
- workflow_dispatch
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Upload Artifact
uses: actions/[email protected]
with:
path: build/libnative.so