ohmyzsh/.github/workflows/main.yml

67 lines
1.9 KiB
YAML
Raw Normal View History

2020-02-04 13:02:20 +01:00
name: CI
on:
pull_request:
types:
- opened
- synchronize
branches:
- master
push:
branches:
- master
2022-02-21 19:27:21 +01:00
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
tests:
name: Run tests
runs-on: ubuntu-latest
2022-01-03 13:10:53 +01:00
if: github.repository == 'ohmyzsh/ohmyzsh'
steps:
- name: Set up git repository
uses: actions/checkout@v4
- name: Install zsh
run: sudo apt-get update; sudo apt-get install zsh
- name: Check syntax
run: |
for file in ./oh-my-zsh.sh \
./lib/*.zsh \
./plugins/*/*.plugin.zsh \
./plugins/*/_* \
./themes/*.zsh-theme; do
zsh -n "$file" || return 1
done
2022-04-15 13:45:25 +02:00
collisions:
name: Check alias collisions
runs-on: ubuntu-latest
steps:
- name: Set up git repository
2024-02-19 15:31:48 +01:00
uses: actions/checkout@v4
2022-04-15 13:45:25 +02:00
- name: Set up Python
2022-11-22 16:24:00 +01:00
uses: actions/setup-python@v4
2022-04-15 13:45:25 +02:00
with:
2022-11-22 16:24:00 +01:00
python-version: '3.10'
2022-04-15 13:59:24 +02:00
- name: Install dependencies
run: |
python -m pip install --upgrade pip
2022-11-22 18:35:42 +01:00
pip install -r tools/alias_collision/requirements.txt
2022-04-15 13:59:24 +02:00
- name: Run unit tests
run: |
cd tools/alias_collision/
2024-02-02 13:48:57 +01:00
python -m pytest
2024-02-19 15:31:48 +01:00
- name: Checkout target branch
uses: actions/checkout@v4
with:
path: ohmyzsh-target-branch
2024-02-19 15:37:05 +01:00
ref: master
2024-02-19 15:19:49 +01:00
- name: Check for alias collisions on target branch
2024-02-19 15:31:48 +01:00
run: python ohmyzsh-target-branch/tools/alias_collision/check_alias_collision.py plugins --known-collisions-output-path known_alias_collisions.json
2024-02-19 15:19:49 +01:00
- name: Compare known collisions to new collisions on source branch
2024-02-19 15:31:48 +01:00
run: python tools/alias_collision/check_alias_collision.py plugins --known-collisions known_alias_collisions.json