blob: 07889f02bf87b176e0b1a975c48528b587bd6cf9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
---
name: Darker-Ruff Lint
on:
pull_request_target:
branches:
- current
permissions:
pull-requests: write
contents: read
env:
base_ref: ${{ github.event.pull_request.base.ref }}
jobs:
darker-lint:
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: read
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
# ref: ${{ github.event.pull_request.head.ref }}
- uses: actions/setup-python@v5
- name: darker install
run: |
pip install git+https://github.com/akaihola/darker.git@master ruff>=0.0.292
# - name: Fetch base branch
# run: |
# git fetch origin ${base_ref}:refs/remotes/origin/base-current
- name: Fetch base and head commits
run: |
git fetch origin ${{ github.event.pull_request.base.sha }}:refs/remotes/origin/temp-base
git fetch origin ${{ github.event.pull_request.head.sha }}:refs/remotes/origin/temp-head
git branch temp-base refs/remotes/origin/temp-base
git branch temp-head refs/remotes/origin/temp-head
- name: Analyze Code
run: |
darker -r temp-base...temp-head --check --diff --lint "ruff check" --color .
|