Welcome to mirror list, hosted at ThFree Co, Russian Federation.

NesTiler.git/NesTiler.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/tests.yml')
-rw-r--r--.github/workflows/tests.yml30
1 files changed, 0 insertions, 30 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
deleted file mode 100644
index 9bc41dd..0000000
--- a/.github/workflows/tests.yml
+++ /dev/null
@@ -1,30 +0,0 @@
-name: Tests
-
-on:
- push:
- branches: [ master ]
- pull_request:
- branches: [ master ]
- workflow_dispatch:
-
-jobs:
- tests:
- strategy:
- matrix:
- host: [windows-latest, ubuntu-latest, macos-latest]
- runs-on: ${{ matrix.host }}
- env:
- TESTS_PATH: ./Tests
- CONFIGURATION: Release
- TESTS_CONFIGURATION: Debug
- steps:
- - name: Fix line endings
- run: git config --global core.autocrlf false
- - name: Checkout
- uses: actions/checkout@v3
- - name: Setup .NET
- uses: actions/setup-dotnet@v2
- with:
- dotnet-version: 6.0.x
- - name: Tests
- run: dotnet test ${{ env.TESTS_PATH }} -c ${{ env.TESTS_CONFIGURATION }} -p:PublishSingleFile=true