Skip to content
This repository was archived by the owner on May 27, 2026. It is now read-only.

Commit 7e23e29

Browse files
committed
Add CI
1 parent e73cce8 commit 7e23e29

2 files changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
build-and-test:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Install dependencies
17+
run: sudo apt-get install -y gcc make
18+
19+
- name: Build and run tests
20+
run: make

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# SAF — Simple Audio Format
22

3+
[![CI](https://github.com/UniquePython/saf/actions/workflows/ci.yml/badge.svg)](https://github.com/UniquePython/saf/actions/workflows/ci.yml)
4+
35
A minimal, portable, header-only C library for a dead-simple audio format. No magic numbers, no validation overhead, no dependencies. You own the data, you own the responsibility.
46

57
## Philosophy

0 commit comments

Comments
 (0)