update cmake #77
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
name: Build and Test | |
on: [push] | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- uses: Vipul-Cariappa/lua-setup-action@main | |
- name: Install Requirements | |
run: | | |
which python3 | |
which lua | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v1 | |
with: | |
languages: cpp | |
queries: security-and-quality | |
- name: Build | |
run: bash .github/build.sh | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v1 | |
- name: Test | |
run: bash .github/test.sh | |
- name: Code Coverage | |
run: | | |
gcov -abcfu obj/Debug/lua_py.c | |
gcov -abcfu obj/Debug/py_lua.c | |
gcov -abcfu obj/Debug/convert.c | |
- name: Upload Code Coverage | |
uses: codecov/codecov-action@v1 | |