Files
FastSync/.gitea/workflows/ci.yaml
T
TapTap e9554c1e69
CI / build-and-test (push) Failing after 4s
CI / build-and-test (pull_request) Failing after 4s
ci: add integration tests (light mode)
2026-07-18 16:06:22 +02:00

24 lines
448 B
YAML

name: CI
on: [push, pull_request]
jobs:
build-and-test:
runs-on: ubuntu-latest
container: gitea.tap-tap.win/taptap/fastsync-ci:v4
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Configure
run: cmake -B build -S .
- name: Build
run: cmake --build build -j$(nproc)
- name: Unit Tests
run: ./build/tests
- name: Integration Tests
run: python3 test.py