Skip to content

Rename ILib.Random.cs to ILibRandom.cs #4

Rename ILib.Random.cs to ILibRandom.cs

Rename ILib.Random.cs to ILibRandom.cs #4

Workflow file for this run

name: CI - Build & Test
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet: ['6.0.x', '8.0.x']
steps:
- uses: actions/checkout@v4
- name: Setup .NET ${{ matrix.dotnet }}
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Run tests
run: dotnet test --no-build --configuration Release --verbosity normal