Delete linux-ci.yml (#3884)

This commit is contained in:
Cijo Thomas 2022-11-09 18:48:44 -05:00 committed by GitHub
parent 724294d00f
commit 5ed4663dba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 41 deletions

View File

@ -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"