Update dmnemec/copy_file_to_another_repo_action requirement to bbebd3da22e4a37d04dca5f782edd5201cb97083 #6899
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
name: Lint | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- v* | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}-${{ github.event_name == 'workflow_dispatch' }} | |
cancel-in-progress: true | |
jobs: | |
lintrunner: | |
name: lintrunner | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
python_version: ["3.11"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python_version }} | |
- name: Install Lintrunner | |
run: | | |
pip install lintrunner==0.12.5 | |
lintrunner init | |
- name: Run lintrunner on all files - Linux | |
run: | | |
set +e | |
if ! lintrunner -v --force-color --all-files --tee-json=lint.json --skip TYPEIGNORE,NOQA,PYPIDEP,EXEC; then | |
echo "" | |
echo -e "\e[1m\e[36mYou can reproduce these results locally by using \`lintrunner -m main\`.\e[0m" | |
exit 1 | |
fi | |
- name: Produce SARIF | |
if: always() && matrix.os == 'ubuntu-latest' | |
run: | | |
python tools/linter/convert_to_sarif.py --input lint.json --output lintrunner.sarif | |
- name: Upload SARIF file | |
if: always() && matrix.os == 'ubuntu-latest' | |
continue-on-error: true | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
# Path to SARIF file relative to the root of the repository | |
sarif_file: lintrunner.sarif | |
category: lintrunner | |
checkout_path: ${{ github.workspace }} |