name: CI on: push: branches: - main pull_request: branches: - main jobs: build: runs-on: ubuntu-latest env: DOTNET_ROOT: /home/mika/.dotnet steps: - name: Checkout uses: https://github.com/actions/checkout@v4 with: fetch-depth: 0 - name: Build run: | set -euo pipefail export PATH="$DOTNET_ROOT:$PATH" dotnet build tests/ClaudeMailbox.Tests/ClaudeMailbox.Tests.csproj -c Release - name: Test run: | set -euo pipefail export PATH="$DOTNET_ROOT:$PATH" dotnet test tests/ClaudeMailbox.Tests/ClaudeMailbox.Tests.csproj \ -c Release --no-build --logger "console;verbosity=normal"