Skip to content

Made everything forced to be 9x9 sodukos #3

Made everything forced to be 9x9 sodukos

Made everything forced to be 9x9 sodukos #3

name: Build and Test
on:
push:
branches:
- main
jobs:
BuildAndTest:
runs-on: ubuntu-latest
name: Run Tests
steps:
- name: Checkout repository
uses: actions/checkout@master
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --configuration Release --no-restore --verbosity normal