From 0e5ca584a5f7a9803e89a950628a0751bd3fdf36 Mon Sep 17 00:00:00 2001 From: Luzifix Date: Fri, 19 Jul 2024 23:23:08 +0200 Subject: [PATCH] Add auto-doc workflow --- .github/workflows/auto-doc.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/auto-doc.yml diff --git a/.github/workflows/auto-doc.yml b/.github/workflows/auto-doc.yml new file mode 100644 index 0000000..c544033 --- /dev/null +++ b/.github/workflows/auto-doc.yml @@ -0,0 +1,26 @@ +name: Automatic documentation +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + auto-doc: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Setup .NET + uses: actions/setup-dotnet@v4 + with: + dotnet-version: 8.x.x + - name: Restore dependencies + run: dotnet restore + - name: Build + run: dotnet build --no-restore + - name: pwd + run: pwd + - name: dir + run: ls -la + - name: Automatic documentation + run: dotnet run Warcraft.Net.Docs