Skip to content

Bump codecov/codecov-action from 3.1.0 to 3.1.5 #18

Bump codecov/codecov-action from 3.1.0 to 3.1.5

Bump codecov/codecov-action from 3.1.0 to 3.1.5 #18

Workflow file for this run

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: [netcoreapp3.1,net6.0]
steps:
- uses: actions/checkout@v3
- 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"