Skip to content

Commit

Permalink
GHA workflow rework 2\n
Browse files Browse the repository at this point in the history
  • Loading branch information
gabekz committed Jul 25, 2023
1 parent adc471e commit 82120ae
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 15 deletions.
12 changes: 0 additions & 12 deletions .github/runner_root.yml

This file was deleted.

13 changes: 13 additions & 0 deletions .github/workflows/runner_root.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Actions

on: [push, pull_request]

jobs:
static-analysis:
name: Static Analysis
uses: ./.github/workflows/static_analysis.yml

linux-build:
name: Linux
needs: static-analysis
uses: ./.github/workflows/linux_builds.yml
9 changes: 6 additions & 3 deletions .github/workflows/static_analysis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
name: Lint
on: [push, pull_request]
name: Static Analysis

on:
workflow_call:

jobs:
formatting-check:
name: clang-format Check
name: format check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 82120ae

Please sign in to comment.