Fix issue #33 #29
Workflow file for this run
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: Compilation check | |
on: | |
pull_request: | |
branches: | |
- main # Cambia esta rama si es necesario | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install SQLite | |
run: sudo apt-get install -y libsqlite3-dev | |
- name: Compile project | |
run: | | |
g++ -c *.cpp -lsqlite3 -Wconversion -Werror |