Skip to content

+ workflows/{fe,c#}.yml #11

+ workflows/{fe,c#}.yml

+ workflows/{fe,c#}.yml #11

Workflow file for this run

name: c#
on:
push:
#paths: ['c#/**']
defaults:
run:
working-directory: ./c#
jobs:
cs:
name: c#
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-dotnet@v4
with:
dotnet-version: 7
cache: true
cache-dependency-path: ${{github.workspace}}/c#/*/packages.lock.json
- name: global.json
run: dotnet new globaljson --sdk-version 7.0.405
- name: restore
run: dotnet restore
- name: build
run: dotnet build --configuration Debug