fix output file name #20
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: Adopt Ruff | |
on: [push, workflow_dispatch] | |
jobs: | |
adopt-ruff: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Set up python | |
id: setup-python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Set up Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
virtualenvs-create: true | |
virtualenvs-in-project: true | |
installer-parallel: true | |
- name: Load cached venv | |
id: cached-poetry-dependencies | |
uses: actions/cache@v3 | |
with: | |
path: .venv | |
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} | |
- name: Install dependencies | |
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' | |
run: poetry install --no-interaction --no-root | |
- name: Get ruff rule data | |
id: ruff_rules | |
run: poetry run ruff rule --all --output-format=json > rules.json | |
- name: Run ruff | |
id: ruff_output | |
run: poetry run ruff . --output-format=json --select=ALL --exit-zero | sed -n '/\[/,//p' > violations.json | |
- name: Validate json files | |
uses: GrantBirki/json-yaml-validate@v2.6.0 | |
with: | |
files: "violations.json, rules.json" | |
- name: Run adopt-ruff | |
run: poetry run python adopt_ruff.py | |
- name: Set step summary | |
run: cat result.md > $GITHUB_STEP_SUMMARY | |
# - uses: actions/upload-artifact@v4 | |
# with: | |
# path: artifacts |