Skip to content

[Snyk] Upgrade @eslint/js from 9.18.0 to 9.19.0 (#90) #445

[Snyk] Upgrade @eslint/js from 9.18.0 to 9.19.0 (#90)

[Snyk] Upgrade @eslint/js from 9.18.0 to 9.19.0 (#90) #445

name: "Run tests (required)"
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
dotnet-tests:
runs-on: ubuntu-latest
name: ".NET Tests & Reports"
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download RDFox license key
run: echo "${{ secrets.RDFOX_LICENSE_CONTENT }}" > ./RDFox.lic
- name: Setup .NET
run: |
sudo add-apt-repository ppa:dotnet/backports
sudo apt-get update && sudo apt-get install -y dotnet-sdk-9.0
- name: Restore dependencies
run: dotnet restore ./client/Boundaries/Boundaries.sln
- name: Build
run: dotnet build ./client/Boundaries/Boundaries.sln --no-restore
- name: Test
run: |
dotnet test ./client/Boundaries/Boundaries.sln --no-build --verbosity normal
- name: Delete license file
run: rm ./RDFox.lic