diff --git a/.github/workflows/linux-ci.yml b/.github/workflows/linux-ci.yml deleted file mode 100644 index 6834fdc7f..000000000 --- a/.github/workflows/linux-ci.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: Linux - -on: - push: - branches: [ 'main*' ] - paths-ignore: - - '**.md' - pull_request: - branches: [ 'main*' ] - paths-ignore: - - '**.md' - -jobs: - build-test: - runs-on: ubuntu-latest - - strategy: - matrix: - version: [net6.0, net7.0] - - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 # fetching all - - - uses: actions/setup-dotnet@v3.0.3 - with: - dotnet-version: '6.0.x' - - - uses: actions/setup-dotnet@v3.0.3 - with: - dotnet-version: '7.0.x' - - - name: Install dependencies - run: dotnet restore - - - name: Build - run: dotnet build --configuration Release --no-restore - - - name: Test ${{ matrix.version }} - run: dotnet test **/bin/**/${{ matrix.version }}/*.Tests.dll --configuration Release --no-build --logger:"console;verbosity=detailed"