Skip to content

Merge pull request #78 from VincentVrijburg/feature/time-entries #223

Merge pull request #78 from VincentVrijburg/feature/time-entries

Merge pull request #78 from VincentVrijburg/feature/time-entries #223

Workflow file for this run

name: build
on:
push:
branches: [ develop ]
pull_request:
branches: [ master, develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --settings coverlet.runsettings --verbosity normal
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: unittests
name: moneybird-dotnet
fail_ci_if_error: true
verbose: true