Skip to content

feat: 1-click auth

feat: 1-click auth #21

name: .NET Build & Test
on:
push:
branches: [ main ]
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
8.0.x
- name: Restore dependencies
run: dotnet restore
working-directory: ./
- name: Build
run: dotnet build Reown.NoUnity.slnf --no-restore
working-directory: ./
test:
needs: build
runs-on: ubuntu-latest
strategy:
matrix:
test-type: [unit-tests, integration-tests]
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
8.0.x
- name: Run tests
uses: ./.github/actions/test-dotnet
with:
type: ${{ matrix.test-type }}
project-id: ${{ secrets.PROJECT_ID }}