Files
rproxy/.gitea/workflows/build.yaml
T
retoor 6ad8586770
Build and Test / build (push) Failing after 31s
Build and Test / coverage (push) Failing after 41s
feat: enhance authentication with constant-time comparisons and memory clearing
feat: implement rate limiting for client requests
feat: enable SSL hostname verification and set preferred cipher suites
fix: deny requests on rate limit allocation failure
test: suppress unused result warnings in connection tests
docs: update test results and coverage requirements in README
2025-12-28 05:16:15 +01:00

51 lines
944 B
YAML
Executable File

# retoor <retoor@molodetz.nl>
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 bc
- name: Build
run: make all
- name: Run tests
run: make test
- name: Build legacy
run: make legacy
- name: Clean
run: make clean
coverage:
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 bc gcovr lcov
- name: Run coverage
run: make coverage