I've resolved the strict-aliasing warnings in json.c
by modifying p…
#6
This file contains hidden or 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 | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: sudo apt-get update && sudo apt-get install -y libevent-dev | |
- name: Create build directory | |
run: mkdir build | |
- name: Run CMake | |
run: cd build && cmake .. | |
- name: Run Make | |
run: cd build && make |