Skip to content

Update all of the version strings (#249) #737

Update all of the version strings (#249)

Update all of the version strings (#249) #737

Workflow file for this run

name: "CCF App Samples CI"
# Created based on https://github.com/microsoft/ccf-app-template
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
banking-app-sample:
name: Banking app sample
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
persist-credentials: false
- name: Build samples in DevContainer
uses: devcontainers/[email protected]
with:
cacheFrom: ghcr.io/microsoft/ccf-samples-devcontainer
runCmd: |
git config --global --add safe.directory "$GITHUB_WORKSPACE"
make lint
cd banking-app && make test
env: |
GITHUB_WORKSPACE
auditable-logging-app-sample:
name: Auditable logging app sample
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
persist-credentials: false
- name: Build samples in DevContainer
uses: devcontainers/[email protected]
with:
cacheFrom: ghcr.io/microsoft/ccf-samples-devcontainer
runCmd: |
cd auditable-logging-app && make test
data-reconciliation-app-sample:
name: Data Reconciliation app sample
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
persist-credentials: false
- name: Build samples in DevContainer
uses: devcontainers/[email protected]
with:
cacheFrom: ghcr.io/microsoft/ccf-samples-devcontainer
runCmd: |
cd data-reconciliation-app && make unit-test && make test