Skip to content

a bit better

a bit better #60

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.x'
include-prerelease: true
- name: Test
env:
CsCheck_Sigma: 1000
CsCheck_Time: 10
CsCheck_Timeout: 1200
run: dotnet test -c Release -l 'console;verbosity=detailed'