Skip to content

add one more lib to install #3

add one more lib to install

add one more lib to install #3

Workflow file for this run

name: Build and Test C Application
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up dependencies
run: |
sudo apt-get update
sudo apt-get install -y libpoppler-glib-dev libglib2.0-dev pkg-config
- name: Build the application
run: |
gcc -o pdf_processor main.c $(pkg-config --cflags --libs poppler-glib glib-2.0)