Skip to content

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

+ workflows/{fe,c#}.yml

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

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@main
- uses: actions/setup-dotnet@main
with:
dotnet-version: 7
cache: true
cache-dependency-path: */packages.lock.json

Check failure on line 18 in .github/workflows/c#.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/c#.yml

Invalid workflow file

You have an error in your yaml syntax on line 18
- name: global.json
run: dotnet new globaljson --sdk-version 7.0.405
- name: restore
run: dotnet restore
- name: build
run: dotnet build --configuration Debug