Files
FastSync/.gitea/workflows/ci.yaml
T
TapTap e7087d518b
CI / build-and-test (push) Failing after 2s
ci: skip apt-get update for faster installs
2026-07-18 14:43:02 +02:00

23 lines
450 B
YAML

name: CI
on: [push, pull_request]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get install -y --no-install-recommends gcc cmake libzstd-dev
- name: Configure
run: cmake -B build -S .
- name: Build
run: cmake --build build -j$(nproc)
- name: Unit Tests
run: ./build/tests