Skip to content

Refactor setup-gradle tasks (#98) #25

Refactor setup-gradle tasks (#98)

Refactor setup-gradle tasks (#98) #25

Workflow file for this run

name: .NET
on:
push:
branches: [ main ]
paths:
- .github/workflows/dotnet.yml
- dotnet/**
pull_request:
branches: [ main ]
paths:
- .github/workflows/dotnet.yml
- dotnet/**
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: dotnet
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Configure .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0
cache: false
- name: Test
run: dotnet test -v quiet -l:"console;verbosity=normal"