From 832121777332bb434ab6860e8a2631023c59c3c5 Mon Sep 17 00:00:00 2001 From: MrDave1999 Date: Fri, 1 Dec 2023 19:00:09 -0500 Subject: [PATCH] chore: Create workflow --- .github/workflows/dotnetcore.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/dotnetcore.yml diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml new file mode 100644 index 0000000..d40aa06 --- /dev/null +++ b/.github/workflows/dotnetcore.yml @@ -0,0 +1,25 @@ +name: YeSQL.Net + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + build: + strategy: + matrix: + os: [ubuntu-latest] + dotnet-version: ['8.x'] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v4 + - name: Setup .NET Core + uses: actions/setup-dotnet@v3 + with: + dotnet-version: ${{ matrix.dotnet-version }} + - name: Test + run: dotnet test ./tests/YeSql.Net.Tests.csproj \ No newline at end of file