Skip to content

Improve workflow caching #2920

Improve workflow caching

Improve workflow caching #2920

Workflow file for this run

name: Check PR
on:
pull_request:
branches-ignore:
- 'main'
types: [ opened, synchronize, reopened ]
concurrency:
group: ${{ github.head_ref }}
cancel-in-progress: true
jobs:
code_analysis:
name: Code analysis
uses: ./.github/workflows/code_analysis.yml
assemble:
name: Assemble
uses: ./.github/workflows/assemble.yml
needs: code_analysis
test:
name: Test
uses: ./.github/workflows/run_tests.yml
needs: assemble