Skip to content

chore(deps): bump versionize from 2.1.0 to 2.3.0 #204

chore(deps): bump versionize from 2.1.0 to 2.3.0

chore(deps): bump versionize from 2.1.0 to 2.3.0 #204

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
types: [opened, reopened, edited, synchronize]
paths-ignore: ["**.md"]
defaults:
run:
working-directory: .
jobs:
build_and_test:
name: 🛠️ Build, 🧪 Test, 📦 Pack & 🚚 Push alpha
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup dotnet
uses: actions/setup-dotnet@v4
with:
global-json-file: .config/global.json
- name: build and test
run: dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=lcov /p:CoverletOutput=coverage/lcov.info --configuration Release
- name: Coveralls UnitTests
uses: coverallsapp/[email protected]
with:
path-to-lcov: test/dotnet-trx-merge.UnitTests/coverage/lcov.info
flag-name: UnitTests
- name: Coveralls IntegrationTests
uses: coverallsapp/[email protected]
with:
path-to-lcov: test/dotnet-trx-merge.IntegrationTests/coverage/lcov.info
flag-name: IntegrationTests