mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-12 12:40:53 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [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/v3...v4) --- 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>
33 lines
935 B
YAML
33 lines
935 B
YAML
name: Misc Tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- '[5-9]+.[0-9]+.x'
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- '[5-9]+.[0-9]+.x'
|
|
|
|
jobs:
|
|
build:
|
|
name: Misc tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: '2.6'
|
|
bundler-cache: false # runs 'bundle install' and caches installed gems automatically
|
|
- name: Detect tabs
|
|
run: /bin/bash ./bin/utils/detect_tab_in_templates.sh
|
|
- name: Detect changes in test files
|
|
run: ./bin/utils/detect_test_file_changes.rb bin/utils/test_file_list.yaml
|
|
- name: Detect carriage return
|
|
run: /bin/bash ./bin/utils/detect_carriage_return.sh
|
|
- name: Detect merge conflicts
|
|
run: /bin/bash ./bin/utils/detect_merge_conflict.sh
|
|
- name: Detect tabs
|
|
run: /bin/bash ./bin/utils/detect_tab_in_java_class.sh
|