Skip to content

Initial - WIP

Initial - WIP #87

Workflow file for this run

name: Apps CI
on:
push:
branches-ignore:
- main
paths:
- src/**
- .github/workflows/apps-*
- .github/workflows/infra-*
env:
DOTNET_VERSION: 8.0.x
DIR: src/apps
jobs:
bundle:
name: Bundle Apps
uses: ./.github/workflows/bundle-template.yml
with:
dir: apps
ci:
name: CI
runs-on: ubuntu-latest
needs: bundle
strategy:
matrix:
name: ${{ fromJson(needs.bundle.outputs.dirs) }}
steps:
- uses: actions/checkout@v4
- name: Install .NET ${{ env.DOTNET_VERSION }}
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Build
working-directory: ${{ env.DIR }}/${{ matrix.name }}
run: dotnet build
- name: Test
if: always()
working-directory: src/apps/${{ matrix.name }}
run: dotnet test --no-build