Skip to content

README edits and site update #32

README edits and site update

README edits and site update #32

Workflow file for this run

name: Build
on:
push:
paths:
- 'src/**'
- 'include/**'
- 'Makefile'
- '*.mk'
- '.github/workflows/build.yml'
jobs:
build:
name: Build library
runs-on: ubuntu-latest
env:
CC: gcc
steps:
- uses: actions/checkout@v4
- name: Build static library
run: make static
- name: Build shared library
run: make shared