Update core bindings to Yrs v0.18 #62
Workflow file for this run
This file contains 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
# Authors: | |
# | |
# Sam Gold <https://github.com/goldsam> | |
# Sebastian Stehle <https://github.com/SebastianStehle> | |
# Lucas Viana <https://github.com/LSViana> | |
name: Test | |
on: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
# Windows | |
- build: win-x64 | |
os: windows-latest | |
# Linux | |
- build: linux-x64 | |
os: ubuntu-latest | |
- build: linux-x64-musl | |
os: ubuntu-latest | |
# macOS | |
- build: macos-x86_64 | |
os: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Download artifacts | |
uses: dawidd6/action-download-artifact@v2 | |
with: | |
path: ./output | |
workflow: build-binaries.yml | |
workflow_conclusion: success | |
name: ${{ matrix.build }} | |
name_is_regexp: true | |
- name: Copy binaries | |
run: | | |
cp output/${{ matrix.build }}/*.* YDotNet | |
- name: Build tests | |
run: | | |
cd Tests/YDotNet.Tests.Unit | |
dotnet build | |
- name: Run tests | |
run: | | |
dotnet test | |
env: | |
RUST_BACKTRACE: 1 |