chore: remove trailing whitespace from README.md formatting

This commit is contained in:
retoor 2025-11-29 00:53:11 +00:00
parent 26b917dcb2
commit a0cf4f2766

View File

@ -0,0 +1,32 @@
name: Build and Test
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y gcc make libssl-dev libsqlite3-dev
- name: Build
run: make all
- name: Run tests
run: make test
- name: Clean
run: make clean