Conversions to Zolian #42
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
# This workflow will build a .NET project | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | |
name: .NET | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
name: 🛠️ Build and Test Release 🛠️ | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🛠️ Check-out code | |
uses: actions/checkout@v3 | |
- name: 🛠️ Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 9.x | |
- name: 🛠️ Enable Problem Matchers | |
run: echo "::add-matcher::.github/matchers/dotnet.json" | |
- name: 🛠️ Restore & Load Dependencies | |
# Eventually add in cache for packages | |
run: dotnet restore | |
- name: 🛠️ Build Release | |
# Test pipeline as production Release | |
run: dotnet build --configuration Release --no-restore | |
- name: 🛠️ Test Release | |
run: dotnet test --no-build --verbosity normal |