Skip to content

chore: bump version to 0.1.2 #24

chore: bump version to 0.1.2

chore: bump version to 0.1.2 #24

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
9.0.x
10.0.x
- name: Restore
run: dotnet restore DataNormalizer.sln
- name: Build
run: dotnet build DataNormalizer.sln --no-restore
- name: Check formatting
run: dotnet tool restore && dotnet csharpier check .
- name: Test
run: dotnet test DataNormalizer.sln --no-build --logger "trx;LogFileName=results.trx"
- name: Upload test results
uses: actions/upload-artifact@v4
if: always()
with:
name: test-results
path: '**/results.trx'