Skip to content

Commit

Permalink
.NET 8 Upgrade, Tests, API Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Gonkers committed Sep 23, 2024
1 parent 4973130 commit 1b659bf
Show file tree
Hide file tree
Showing 88 changed files with 64,245 additions and 63,451 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/nuget_deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# GitHub action to build and deploy a NuGet package to Nuget.org

name: NuGet Deploy

on:
push:
branches:
- * # all branches

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x

- name: Restore
run: dotnet restore

- name: Build
run: dotnet build --configuration Release --no-restore

- name: Test
run: dotnet test --no-restore --no-build

- name: Pack
run: dotnet pack --no-restore --no-build --configuration Release --output artifacts ./src/ScryfallApi.Client/ScryfallApi.Client.csproj
Loading

0 comments on commit 1b659bf

Please sign in to comment.