diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c191b12..39ab9a4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,10 +14,8 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v3 - - name: Restore depedencies - run: dotnet restore -c Release - name: Build code - run: dotnet build -c Release --no-restore + run: dotnet build -c Release - name: Test run: dotnet test -c Release --no-build --verbosity normal linux-ubuntu: @@ -25,9 +23,7 @@ jobs: container: sdflysha/dotnet6sdk-paddle:2.4.2-ubuntu22 steps: - uses: actions/checkout@v3 - - name: Restore depedencies - run: dotnet restore -c Release - name: Build code - run: dotnet build -c Release --no-restore + run: dotnet build -c Release - name: Test run: dotnet test -c Release --no-build --verbosity normal \ No newline at end of file