Skip to content

Commit f0847e8

Browse files
committed
.NET 8 Upgrade, Tests, API Updates
1 parent 4973130 commit f0847e8

File tree

88 files changed

+64242
-63451
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+64242
-63451
lines changed

.github/workflows/nuget_deploy.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# GitHub action to build and deploy a NuGet package to Nuget.org
2+
3+
name: NuGet Deploy
4+
5+
on: push
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v3
12+
- name: Setup .NET
13+
uses: actions/setup-dotnet@v3
14+
with:
15+
dotnet-version: 8.0.x
16+
17+
- name: Restore
18+
run: dotnet restore
19+
20+
- name: Build
21+
run: dotnet build --configuration Release --no-restore
22+
23+
- name: Test
24+
run: dotnet test --configuration Release --no-build
25+
26+
- name: Pack
27+
run: dotnet pack --configuration Release --no-build --output artifacts ./src/ScryfallApi.Client/ScryfallApi.Client.csproj

0 commit comments

Comments
 (0)