mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-14 16:13:44 +08:00
add collision check to github actions
This commit is contained in:
parent
d05b5b194e
commit
de10614369
13
.github/workflows/main.yml
vendored
13
.github/workflows/main.yml
vendored
@ -36,3 +36,16 @@ jobs:
|
|||||||
./themes/*.zsh-theme; do
|
./themes/*.zsh-theme; do
|
||||||
zsh -n "$file" || return 1
|
zsh -n "$file" || return 1
|
||||||
done
|
done
|
||||||
|
|
||||||
|
collisions:
|
||||||
|
name: Check alias collisions
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Set up git repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Set up Python
|
||||||
|
uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: 3.8
|
||||||
|
- name: Check for alias collisions
|
||||||
|
run: python3 tools/alias_collision/check_alias_collision.py plugins
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user