Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, ubuntu-24.04-arm64, windows-latest, macos-latest]
os: [ubuntu-24.04, ubuntu-24.04-arm, windows-latest, macos-latest]
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_NOLOGO: 1
Expand All @@ -35,7 +35,7 @@ jobs:
run: dotnet restore couchbase-net-client.sln

- name: Build (Release)
run: dotnet build couchbase-net-client.sln --configuration Release --no-restore
run: dotnet build couchbase-net-client.sln --configuration Release

- name: Test - Couchbase.UnitTests
run: dotnet test tests/Couchbase.UnitTests/Couchbase.UnitTests.csproj --configuration Release --no-build --logger "trx;LogFileName=unit-tests.trx" --results-directory "TestResults"
Expand Down
Loading