Generate types from meta model #261
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
fail-fast: false # we have timing issues on some OS, so we want them all to run | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
show-progress: false | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v4 | |
- name: Run build | |
run: dotnet build -c Release src | |
- name: Run tests | |
run: dotnet test --logger GitHubActions | |
- name: Run publish | |
run: dotnet pack -o release src | |
- name: Upload NuGet packages | |
uses: actions/upload-artifact@v2 | |
with: | |
name: packages | |
path: release/ |