Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ninjanye committed Jul 5, 2024
1 parent f1f8a3a commit ba6722c
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,29 +8,31 @@ on:
- "v[0-9]+.[0-9]+.[0-9]+"

jobs:
build-and-test:
runs-on: ubuntu-latest
setup:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Log version
run: echo "Building version ${{ github.ref }}"

- 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: Integration Tests
run: dotnet test --no-restore --verbosity minimal
working-directory: NinjaNye.SearchExtensions.Tests.Integration

# - name: Pack
# run: dotnet pack --configuration Release --no-build --output ../../nupkgs
Expand Down

0 comments on commit ba6722c

Please sign in to comment.