Skip to content

Re: [#135](https://github.com/supabase-community/supabase-csharp/issu… #3

Re: [#135](https://github.com/supabase-community/supabase-csharp/issu…

Re: [#135](https://github.com/supabase-community/supabase-csharp/issu… #3

name: Build and Test
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
jobs:
buildAndTest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore