release: 2.0.1 #13
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |