DLPX-93224 Remove unnecessary tasks related to python3.11 added by previous os-upgrade PRs #2599
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request] | |
jobs: | |
check-ansible: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run ansible-lint | |
uses: ansible/ansible-lint@main | |
with: | |
args: "" | |
setup_python: "true" | |
working_directory: "" | |
requirements_file: ".github/misc/ansible-lint-requirements.yml" | |
check-shellcheck: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- run: sudo ./.github/scripts/install-gradle.sh | |
- run: sudo ./.github/scripts/install-shellcheck.sh | |
- run: /opt/gradle-5.1/bin/gradle shellCheck | |
check-shfmt: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- run: sudo ./.github/scripts/install-gradle.sh | |
- run: sudo ./.github/scripts/install-shfmt.sh | |
- run: /opt/gradle-5.1/bin/gradle shfmtCheck |