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 71c7a53 commit a58e5b2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 19 deletions.
25 changes: 7 additions & 18 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"

jobs:
build:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -26,29 +26,18 @@ jobs:
run: dotnet build --configuration Release --no-restore
working-directory: NinjaNye.SearchExtensions

- name: Test
run: dotnet test --verbosity minimal
working-directory: NinjaNye.SearchExtensions.Tests

- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: build-output
path: NinjaNye.SearchExtensions/bin/Release

test:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.x'

- name: Test
run: dotnet test --verbosity minimal
working-directory: NinjaNye.SearchExtensions.Tests

deploy:
needs: [build, test]
needs: [build-and-test]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion NinjaNye.SearchExtensions/NinjaNye.SearchExtensions.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard1.0;netstandard2.1;net481;net8.0</TargetFrameworks>
<TargetFrameworks>net8.0;netstandard1.0;netstandard2.1;net48</TargetFrameworks>
<Description>A collection of extension methods to IQueryable and IEnumerable that enable easy searching and ranking. Searches can be performed against multiple properties and support a wide range of types</Description>
<Version>4.0.0.3</Version>
<PackageProjectUrl>https://ninjanye.github.io/SearchExtensions/</PackageProjectUrl>
Expand Down

0 comments on commit a58e5b2

Please sign in to comment.