Skip to content

release: 2.0.1

release: 2.0.1 #13

Workflow file for this run

name: tests
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
jobs:
rayfall-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install build dependencies
run: sudo apt-get update && sudo apt-get install -y build-essential clang rsync
- uses: actions/setup-python@v5
with:
python-version: '3.x'
# No q binary in CI. `make test` runs the server self-round-trip leg and skips the real-q interop
- name: Build and run tests
env:
RAYFORCE_GITHUB: ${{ secrets.RAYFORCE_GITHUB || 'https://github.com/RayforceDB/rayforce.git' }}
RAYFORCE_REF: ${{ vars.RAYFORCE_REF }}
CC: clang
run: make test