tomas/.github/workflows/dotnet.yml
Tony Bark f006ab41bf Issue and pull request templates
- Added code of conduct
- Code climate badges
2023-01-07 12:39:07 -05:00

30 lines
743 B
YAML

name: .NET
on:
schedule:
- cron: "0 0 * * 0"
push:
branches: [main, develop, "feature/**", "release/**"]
pull_request:
branches: [main, develop, "feature/**", "release/**"]
jobs:
build:
timeout-minutes: 15
continue-on-error: true
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