forked from mirrors/Awesome-CV
bdd64051f1
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
57 lines
1.1 KiB
YAML
57 lines
1.1 KiB
YAML
name: Integration
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request: {}
|
|
|
|
concurrency:
|
|
group: integration-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
changed:
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
yaml_changed: ${{ steps.filter-yaml.outputs.changed }}
|
|
yaml_files: ${{ steps.filter-yaml.outputs.files }}
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Get Changed Files
|
|
id: changed-files
|
|
uses: dorny/paths-filter@v2
|
|
with:
|
|
list-files: json
|
|
filters: |
|
|
yaml:
|
|
- '**/*.yaml'
|
|
- '**/*.yml'
|
|
|
|
- name: Filter changed YAML files to outputs
|
|
id: filter-yaml
|
|
run: |
|
|
echo ::set-output name=changed::${{ steps.changed-files.outputs.yaml }}
|
|
echo ::set-output name=files::${{ steps.changed-files.outputs.yaml_files }}
|
|
|
|
|
|
yaml:
|
|
needs:
|
|
- changed
|
|
if: ${{ needs.changed.outputs.yaml_changed != 'false' }}
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Lint YAML Files
|
|
id: yaml-lint
|
|
run: |
|
|
yamllint .
|