aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2021-12-30 14:58:57 -0500
committerJussi Pakkanen <jpakkane@gmail.com>2021-12-31 12:01:34 +0200
commit9f8df3529fa9026134d8fc01ab6daa21f36dcfbf (patch)
tree9567efc1c34fa56c72704ae69f654f3077946ad4
parent1708148f510975a3d1cdda53837439a5ee5a5fd2 (diff)
downloadmeson-9f8df3529fa9026134d8fc01ab6daa21f36dcfbf.zip
meson-9f8df3529fa9026134d8fc01ab6daa21f36dcfbf.tar.gz
meson-9f8df3529fa9026134d8fc01ab6daa21f36dcfbf.tar.bz2
rename lint workflow for less confusion
For a long time now, this has done 3 different things, only one of which is mypy. But they are labeled: - LintMypy / lint (runs pylint) - LintMypy / custom_lint (runs a custom script) - LintMypy / mypy (actually runs mypy) This reduces the usable length of the label which isn't all that long to begin with, is actively misleading, and even when you know what is going on, it becomes harder to tell at a glance what failed. Change it to be more unambiguous.
-rw-r--r--.github/workflows/lint.yml (renamed from .github/workflows/lint_mypy.yml)10
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/lint_mypy.yml b/.github/workflows/lint.yml
index 9572707..cdfed11 100644
--- a/.github/workflows/lint_mypy.yml
+++ b/.github/workflows/lint.yml
@@ -1,22 +1,22 @@
-name: LintMypy
+name: Lint
concurrency:
- group: mypy-${{ github.head_ref }}
+ group: lint-${{ github.head_ref }}
cancel-in-progress: true
on:
push:
paths:
- "**.py"
- - ".github/workflows/lint_mypy.yml"
+ - ".github/workflows/lint.yml"
pull_request:
paths:
- "**.py"
- - ".github/workflows/lint_mypy.yml"
+ - ".github/workflows/lint.yml"
jobs:
- lint:
+ pylint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2