ci: 👷 Change CI to add test files
Some checks failed
Tests / Unit Testing1 (push) Failing after 40s

This commit is contained in:
2023-11-02 19:48:23 +01:00
parent de2eb52756
commit 0d06576f8b
5 changed files with 14 additions and 1 deletions

View File

@ -16,5 +16,10 @@ jobs:
dotnet-version: '7.0.x'
- name: "🏗️ Build"
run: dotnet build
- name: "🗃️ Setup file"
# Add files into /Tests/bin/Debug/net7.0 and create thisfileexist.txt
run: |
mkdir -p Tests/bin/Debug/net7.0
echo "incredible file" > thisfileexist.txt
- name: "✅ Test"
run: dotnet test