Merge pull request #20 from nguyenhuy0905/beta-v0.0.1 #1
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: GCC Ubuntu | |
on: | |
push: | |
branches: | |
- "**" | |
pull_request: | |
branches: | |
- "**" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: sudo apt-get update && sudo apt-get install gcc cmake ninja-build valgrind | |
- name: Compile executable | |
run: mkdir build && cd build && cmake -DBUILD_TYPE=release .. && cmake --build . |