Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(#176) Shared Workflow #177

Merged
merged 1 commit into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Glossary API CI workflow

on:
push:
branches:
- master
- develop
- 'hotfix/**'
- 'release/**'
- 'feature/**'
pull_request:
types: [opened, reopened, synchronize, ready_for_review]

jobs:
ci_remote:
uses: nciocpl/nci.ocpl.api.shared/.github/workflows/[email protected]
with:
api-project: src/NCI.OCPL.Api.Glossary/NCI.OCPL.Api.Glossary.csproj
artifact-name: glossary
9 changes: 9 additions & 0 deletions .github/workflows/ocpl_cm_standards_check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: OCPL Configuration Management Standards Check

on:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]

jobs:
commitlint_remote:
uses: nciocpl/.github/.github/workflows/ocpl_cm_standards_check.yml@workflow/v2
183 changes: 0 additions & 183 deletions .github/workflows/workflow.yml

This file was deleted.

6 changes: 6 additions & 0 deletions global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"sdk": {
"rollForward": "latestFeature",
"version": "6.0.0"
}
}
Binary file modified integration-tests/bin/karate.jar
Binary file not shown.
4 changes: 4 additions & 0 deletions integration-tests/bin/start-api.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash

# Used in CI builds to abstract any API-specific start up steps.
dotnet NCI.OCPL.Api.Glossary.dll
Loading