mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-24 06:40:07 +00:00
add collision check to github actions
This commit is contained in:
parent
d05b5b194e
commit
de10614369
1 changed files with 13 additions and 0 deletions
13
.github/workflows/main.yml
vendored
13
.github/workflows/main.yml
vendored
|
@ -36,3 +36,16 @@ jobs:
|
|||
./themes/*.zsh-theme; do
|
||||
zsh -n "$file" || return 1
|
||||
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 a new issue