Skip to content

fix: add the workflows to the filters #4

fix: add the workflows to the filters

fix: add the workflows to the filters #4

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
paths:
- 'src/**'
- '.github/workflows/CI.yml'
env:
CONFIGURATION: Release
DOTNET_CORE_VERSION: 8.0.x
WORKING_DIRECTORY: src
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_CORE_VERSION }}
- name: Build
run: dotnet build "${{ env.WORKING_DIRECTORY }}" --configuration ${{ env.CONFIGURATION }}
- name: Test
run: dotnet test --no-build "${{ env.WORKING_DIRECTORY }}"