mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-19 02:02:32 +01:00
remove known collisions
This commit is contained in:
parent
7875e78af7
commit
c9282c5613
4 changed files with 59 additions and 432 deletions
10
.github/workflows/main.yml
vendored
10
.github/workflows/main.yml
vendored
|
|
@ -47,8 +47,6 @@ jobs:
|
|||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: '3.10'
|
||||
- name: Check for alias collisions
|
||||
run: python tools/alias_collision/check_alias_collision.py plugins
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
|
|
@ -57,3 +55,11 @@ jobs:
|
|||
run: |
|
||||
cd tools/alias_collision/
|
||||
python -m pytest
|
||||
- name: Check for alias collisions on target branch
|
||||
run: |
|
||||
git checkout ${GITHUB_BASE_REF}
|
||||
python tools/alias_collision/check_alias_collision.py plugins --known-collisions-output-path known_alias_collisions.json
|
||||
- name: Compare known collisions to new collisions on source branch
|
||||
run: |
|
||||
git checkout ${GITHUB_HEAD_REF}
|
||||
python tools/alias_collision/check_alias_collision.py plugins --known-collisions known_alias_collisions.json
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue