ready
Some checks failed
Main Build Process / Build & Test (pull_request) Failing after 1m30s

This commit is contained in:
2024-08-29 18:49:55 +02:00
parent f520cf2496
commit 8cc895649b
2 changed files with 0 additions and 33 deletions

View File

@@ -82,12 +82,3 @@ jobs:
-d "{\"body\": \"${COMMENT_CONTENT}\"}" \ -d "{\"body\": \"${COMMENT_CONTENT}\"}" \
${GITEA_URL}/api/v1/repos/${REPO_OWNER}/${REPO_NAME}/issues/${PR_NUMBER}/comments ${GITEA_URL}/api/v1/repos/${REPO_OWNER}/${REPO_NAME}/issues/${PR_NUMBER}/comments
- name: Upload Test Result Files
uses: actions/upload-artifact@v3
with:
name: test-results
path: ${{ github.workspace }}/**/TestResults/**/*
retention-days: 5
- name: debug
run : ls

View File

@@ -1,24 +0,0 @@
name: dotnet package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: [ '8.0.x' ]
steps:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Install dependencies
run: dotnet restore ./src/LittleTown.sln
- name: Build
run: dotnet build ./src/LittleTown.sln
- name: Test with the dotnet CLI
run: dotnet test ./src/LittleTown.sln