Skip to content

Add dependency installation step in CI workflow #2

Add dependency installation step in CI workflow

Add dependency installation step in CI workflow #2

Workflow file for this run

name: Build and Test
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y libreadline-dev
- name: Build
run: make
- name: Test
run: make test