mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2026-02-13 12:50:58 +01:00
remove known collisions
This commit is contained in:
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
|
||||
|
||||
Reference in New Issue
Block a user