diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 60e54cc..5b6d64e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,33 +8,23 @@ on: - "v[0-9]+.[0-9]+.[0-9]+" jobs: - setup: + build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Restore dependencies run: dotnet restore - - build: - runs-on: ubuntu-latest - needs: setup - - steps: + - name: Build run: dotnet build -c Release --no-restore --verbosity minimal working-directory: NinjaNye.SearchExtensions - test: - runs-on: ubuntu-latest - needs: setup - - steps: - name: Unit Tests run: dotnet test --no-restore --verbosity minimal working-directory: NinjaNye.SearchExtensions.Tests - -# - name: Pack + +# - name: Package # run: dotnet pack --configuration Release --no-build --output ../../nupkgs # # - name: Push to NuGet