tomas/.github/workflows/dotnet.yml
Tony Bark bdbd8572ea Migrated to .NET 6.0
- Switched to file-scoped namespaces
- Enabled Implicit Usings and Nullable

Kernal was migrated too but is unusable, at the moment. Stick with developing or testing from the terminal emulator.
2021-11-22 17:48:50 -05:00

28 lines
679 B
YAML

name: .NET
on:
schedule:
- cron: "0 0 * * 0"
push:
branches: [master, main, develop, "feature/**"]
pull_request:
branches: [master, main, develop, "feature/**"]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
dotnet: ["6.0.x"]
os: [windows-latest, ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Install dependencies
run: dotnet restore src/Tomas.Terminal
- name: Build
run: dotnet build src/Tomas.Terminal -c Release --no-restore