diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 37791b8..cc7f5aa 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -15,11 +15,18 @@ jobs: matrix: os: [ macos-latest, ubuntu-latest, windows-latest ] steps: - - uses: actions/checkout@v2 - - name: Set up Python 3.14.x - uses: actions/setup-python@v2 + - uses: actions/checkout@v4 + - name: Set up Python 3.14+ + uses: actions/setup-python@v5 with: - python-version: '>=3.14.0 <3.15' + python-version: '>=3.14.2' + + - name: Make libsodium discoverable + if: runner.os == 'macOS' + run: | + echo "DYLD_FALLBACK_LIBRARY_PATH=$(brew --prefix)/lib:/usr/local/lib:/usr/lib" >> "$GITHUB_ENV" + echo "DYLD_LIBRARY_PATH=$(brew --prefix)/lib" >> "$GITHUB_ENV" + - name: Install dependencies (Unix) if: runner.os != 'Windows' run: |