Skip to content

Nightly

Nightly #62

Workflow file for this run

name: Nightly
on:
workflow_dispatch:
schedule:
- cron: '0 4 * * *'
jobs:
build:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3.3.0
- run: dotnet --version
- run: dotnet clean Drill.sln --maxCpuCount
- run: dotnet build Drill.sln --maxCpuCount
- run: dotnet test Drill.sln --maxCpuCount