Skip to content

Commit

Permalink
Periodic workflow run test
Browse files Browse the repository at this point in the history
  • Loading branch information
amendelzon committed Nov 7, 2023
1 parent 2d0bd06 commit b988a89
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/lint-c.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
name: Lint C code

on: [push]
on:
push:
workflow_call:
inputs:
branch:
description: "The branch on which to run this workflow"
required: true
type: string

jobs:
run-c-linter:
Expand All @@ -10,6 +17,8 @@ jobs:
steps:
- name: Checkout this repo
uses: actions/checkout@v3
with:
ref: ${{ inputs.branch }}

- name: Build the ledger docker image
run: docker/ledger/build
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/periodic.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Periodic workflow run

on: [push]

jobs:
call-run-c-linter-on-master:
uses: ./.github/workflows/lint-c.yml
with:
branch: develop-2.3


0 comments on commit b988a89

Please sign in to comment.