Skip to content

Merge pull request #16 from elyosemite/release-please--branches--main #5

Merge pull request #16 from elyosemite/release-please--branches--main

Merge pull request #16 from elyosemite/release-please--branches--main #5

name: ProjectManagement CI Pipeline

Check failure on line 1 in .github/workflows/projectmanagement-ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/projectmanagement-ci.yml

Invalid workflow file

(Line: 4, Col: 3): Unexpected value 'paths', (Line: 5, Col: 7): A sequence was not expected
on:
paths:
- 'src/Identity/**'
- '.github/workflows/projectmanagement-*.yml'
workflow_call:
jobs:
build-dotnet:
name: Build & Test .NET Service
runs-on: ubuntu-latest
defaults:
run:
working-directory: .
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '9.0.x'
# - name: Release Please
# id: release
# uses: google-github-actions/release-please-action@v4
# with:
# release-type: simple
# package-name: projectmanagement
# Continous Integration
- name: Restore dependencies
run: dotnet restore ./src/ProjectManagement/ProjectManagement.Presentation/ProjectManagement.Presentation.csproj
- name: Build
run: dotnet build ./src/ProjectManagement/ProjectManagement.Presentation/ProjectManagement.Presentation.csproj --no-restore --configuration Release