From caf9f08d8a08a75b3393ff44e2efca9bc65592eb Mon Sep 17 00:00:00 2001 From: KD Date: Fri, 28 Mar 2025 19:02:31 -0400 Subject: [PATCH] Forgot to remove this files --- .config/dotnet-tools.json | 13 ------------- .github/workflows/dotnet.yml | 25 ------------------------- 2 files changed, 38 deletions(-) delete mode 100644 .config/dotnet-tools.json delete mode 100644 .github/workflows/dotnet.yml diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json deleted file mode 100644 index 8612f23..0000000 --- a/.config/dotnet-tools.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "version": 1, - "isRoot": true, - "tools": { - "dotnet-ef": { - "version": "8.0.7", - "commands": [ - "dotnet-ef" - ], - "rollForward": false - } - } -} \ No newline at end of file diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml deleted file mode 100644 index f909f00..0000000 --- a/.github/workflows/dotnet.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: .NET - -on: - push: - branches: [ "master" ] - pull_request: - branches: [ "master" ] - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - name: Setup .NET - uses: actions/setup-dotnet@v2 - with: - dotnet-version: 8.0.x - - name: Restore dependencies - run: dotnet restore - - name: Build - run: dotnet build --no-restore - - name: Test - run: dotnet test --no-build --verbosity normal