Skip to content

fix: print working directory #6

fix: print working directory

fix: print working directory #6

Workflow file for this run

name: Build and Test
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:

Check failure on line 12 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

You have an error in your yaml syntax on line 12
- uses: actions/checkout@v2
- name: Change Directory
run: cd DotnetFoundation
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: "7.0.x"
-name: Current Directory
run: pwd
- name: Build
run: dotnet build --configuration Release
- name: Test
run: dotnet test --configuration Release --no-build