mirror of
https://github.com/javalsai/lidm.git
synced 2026-05-28 18:17:17 +02:00
63e4455aaf
Bumps [dorny/paths-filter](https://github.com/dorny/paths-filter) from 3 to 4. - [Release notes](https://github.com/dorny/paths-filter/releases) - [Changelog](https://github.com/dorny/paths-filter/blob/master/CHANGELOG.md) - [Commits](https://github.com/dorny/paths-filter/compare/v3...v4) --- updated-dependencies: - dependency-name: dorny/paths-filter dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
36 lines
752 B
YAML
36 lines
752 B
YAML
name: _
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
check:
|
|
name: Check
|
|
uses: ./.github/workflows/check.yml
|
|
permissions: write-all
|
|
check_paths:
|
|
name: Paths Filter
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
code_changed: ${{ steps.filter.outputs.code }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- id: filter
|
|
uses: dorny/paths-filter@v4
|
|
with:
|
|
filters: |
|
|
code:
|
|
- Makefile
|
|
- 'src/**'
|
|
- 'include/**'
|
|
build:
|
|
name: Build
|
|
needs: check_paths
|
|
if: github.event_name != 'push' || needs.check_paths.outputs.code_changed == 'true'
|
|
uses: ./.github/workflows/build.yml
|
|
permissions: write-all
|