diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml deleted file mode 100644 index 2ce9ff1..0000000 --- a/.github/workflows/dotnet.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: .NET - -on: - push: - branches: [ main, master ] - pull_request: - branches: [ main, master ] - -jobs: - build_and_test: - - runs-on: windows-latest - - steps: - - name: Setup .NET - uses: actions/setup-dotnet@v1 - with: - dotnet-version: 5.0.x - - name: Download latest Dalamud build - run: | - cd .. - curl -O https://goatcorp.github.io/dalamud-distrib/latest.zip - mkdir Dalamud - unzip latest.zip -d ./Dalamud/bin - - uses: actions/checkout@v2 - - name: Restore dependencies - run: dotnet restore - - name: Build - run: dotnet build --no-restore - - name: Test - run: dotnet test --no-build --verbosity normal