Skip to content

Poc/repository dispatch #2

Poc/repository dispatch

Poc/repository dispatch #2

Workflow file for this run

name: Dotnet Build, Test
on:
pull_request:
paths:
- '**'
push:
branches:
- master
jobs:
build-test-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Xero-NetStandard repo
uses: actions/checkout@v4
with:
repository: XeroAPI/Xero-NetStandard
path: Xero-NetStandard
- name: Set up .NET environment
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8'
- name: Build post generation
run: dotnet build
- name: Run Test
run: dotnet test