Improve floating-point comparisons for cross-platform stability #102
Workflow file for this run
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
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| name: CI | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| go-version: | |
| - '1.23' | |
| os: | |
| - ubuntu-latest | |
| - macos-latest | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Install Go ${{ matrix.go-version }} | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| - uses: actions/checkout@v4 | |
| - name: Install Kiwi dependencies | |
| run: | | |
| echo "Installing Kiwi C library..." | |
| make install-kiwi | |
| echo "Verifying installation..." | |
| if [ ! -d "/usr/local/include/kiwi" ]; then | |
| echo "ERROR: Kiwi headers not found at /usr/local/include/kiwi/" | |
| echo "Installation failed - headers were not properly installed" | |
| exit 1 | |
| fi | |
| if ! ls /usr/local/lib/libkiwi* > /dev/null 2>&1; then | |
| echo "ERROR: Kiwi libraries not found at /usr/local/lib/libkiwi*" | |
| echo "Installation failed - libraries were not properly installed" | |
| exit 1 | |
| fi | |
| echo "✓ Kiwi installation verified successfully" | |
| ls -la /usr/local/include/kiwi/ | |
| ls -la /usr/local/lib/libkiwi* | |
| - name: Run tests | |
| run: make test |