Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

#11292742 update readme about .net version #48

#11292742 update readme about .net version

#11292742 update readme about .net version #48

Workflow file for this run

name: Build
on:
push:
branches:
- '*'
tags-ignore:
- '*.*'
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
name: Build project
steps:
- uses: actions/checkout@v2
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.412'
- name: Run build
run:
dotnet build -c Release AzureBillingExporter.sln
- name: Run unit-tests
run: dotnet test --no-build -c Release ./AzureBillingExporter.Tests/AzureBillingExporter.Tests.csproj