Skip to content

Commit

Permalink
batch functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
pimbrouwers committed Apr 4, 2024
1 parent c4b53c7 commit d84e770
Show file tree
Hide file tree
Showing 22 changed files with 1,264 additions and 480 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['6.0.x']
dotnet-version: ['8.0.x']
steps:
- uses: actions/checkout@v2

- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v1.7.2
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}

- name: Install dependencies
run: dotnet restore
run: dotnet restore src/Spiffy

- name: Build
run: dotnet build -c Release --no-restore
run: dotnet build src/Spiffy -c Release

- name: Test
run: dotnet test -c Release --no-build
run: dotnet test test/Spiffy.Tests -c Release
62 changes: 0 additions & 62 deletions Spiffy.sln

This file was deleted.

Loading

0 comments on commit d84e770

Please sign in to comment.