Skip to content

ci: cd better

ci: cd better #12

Workflow file for this run

name: "PR: Libs"
on:
pull_request:
paths:
- src/**
- .github/workflows/libs-*
env:
DOTNET_VERSION: 8.0.x
DIR: src/libs
jobs:
find-verticals:
uses: ./.github/workflows/_find-verticals.yml
with:
type: lib
ci:
name: CI
runs-on: ubuntu-latest
needs: find-verticals
strategy:
matrix: ${{ fromJson(needs.find-verticals.outputs.matrix) }}
steps:
- uses: actions/checkout@v4
- name: Install .NET
uses: actions/setup-dotnet@v4
- name: Build
working-directory: ${{ matrix.path }}
run: dotnet build
- name: Test
if: always()
working-directory: ${{ matrix.path }}
run: dotnet test --no-build