Skip to content

Bump PKHeX.Core from 24.11.11 to 24.11.12 #1

Bump PKHeX.Core from 24.11.11 to 24.11.12

Bump PKHeX.Core from 24.11.11 to 24.11.12 #1

Workflow file for this run

name: PR Test
on:
pull_request:
types:
- opened
- synchronize
paths-ignore:
- '.github/**'
- '*.md'
jobs:
build-and-test:
runs-on: windows-latest
env:
PROJECT_NAME: WC3Plugin
DOTNET_VERSION: 9.0.x
OUT_DIR: build
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Restore Dependencies
run: dotnet restore
- name: Build Release
run: dotnet build ${{ env.PROJECT_NAME }} --no-restore --configuration Release -o ${{ env.OUT_DIR }}
- name: Run Tests
run: dotnet test --no-restore --verbosity normal