Skip to content

Update

Update #31

Workflow file for this run

name: CI
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install -y libcurl4-openssl-dev libjson-c-dev
- name: Build
run: |
gcc geofind.c -o geofind -lcurl -ljson-c
- name: Run tests
run: |