Skip to content

RELEASE 4.9.0

RELEASE 4.9.0 #39

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: ['windows-latest', 'ubuntu-latest', 'macos-latest']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Restore tools
run: dotnet tool restore
- name: Test
run: bin/test.sh
- name: Codacy Coverage Reporter
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: codacy/codacy-coverage-reporter-action@master
with:
project-token: ${{ secrets.CODACY_TOKEN }}
coverage-reports: 'coverage.xml'