Skip to content

Check

Check #270

Workflow file for this run

name: Check
on:
#push:
pull_request:
schedule:
- cron: '0 3 * * *'
jobs:
build:
strategy:
matrix:
os:
- name: macos-latest
run: ./build.sh
- name: ubuntu-latest
run: ./build.sh
- name: windows-latest
run: ./build.cmd
dotnet: [8.0.100]
runs-on: ${{ matrix.os.name }}
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Restore tools
run: dotnet tool restore
- name: Run tests
run: ${{ matrix.os.run }}
tests:
strategy:
matrix:
os:
- name: macos-latest
run: ./build.sh
dotnet: [8.0.100]
runs-on: ${{ matrix.os.name }}
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Run tests
run: ${{ matrix.os.run }} -t tests