diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f6b03a2..61c9a48 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,7 +22,7 @@ jobs: run: dotnet build ./YaCloudKit.sln --configuration Release --no-restore - name: Test - run: dotnet test ./YaCloudKit.sln --configuration Release --no-restore + run: dotnet test --no-build ./YaCloudKit.sln --configuration Release --no-restore - name: Pack run: dotnet pack ./YaCloudKit.sln -c Release diff --git a/.github/workflows/pull_requests.yml b/.github/workflows/pull_requests.yml index e5c2718..96b3573 100644 --- a/.github/workflows/pull_requests.yml +++ b/.github/workflows/pull_requests.yml @@ -12,12 +12,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 - - - name: Setup .NET 6 - uses: actions/setup-dotnet@v3 - with: - dotnet-version: 6.0.x + uses: actions/checkout@v4 - name: Install dependencies run: dotnet restore ./YaCloudKit.sln @@ -26,4 +21,4 @@ jobs: run: dotnet build ./YaCloudKit.sln --configuration Release --no-restore - name: Test - run: dotnet test ./YaCloudKit.sln --configuration Release --no-restore \ No newline at end of file + run: dotnet test --no-build ./YaCloudKit.sln --configuration Release --no-restore \ No newline at end of file