2020-02-04 12:02:20 +00:00
|
|
|
name: CI
|
2020-01-28 23:22:27 +00:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
types:
|
|
|
|
- opened
|
|
|
|
- synchronize
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
push:
|
2023-01-13 11:40:47 +00:00
|
|
|
branches:
|
2020-01-28 23:22:27 +00:00
|
|
|
- master
|
|
|
|
|
2022-02-21 18:27:21 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2022-10-07 12:39:00 +00:00
|
|
|
permissions:
|
|
|
|
contents: read # to fetch code (actions/checkout)
|
|
|
|
|
2020-01-28 23:22:27 +00:00
|
|
|
jobs:
|
|
|
|
tests:
|
|
|
|
name: Run tests
|
2023-10-11 18:44:46 +00:00
|
|
|
runs-on: ubuntu-latest
|
2022-01-03 12:10:53 +00:00
|
|
|
if: github.repository == 'ohmyzsh/ohmyzsh'
|
2020-01-28 23:22:27 +00:00
|
|
|
steps:
|
|
|
|
- name: Set up git repository
|
2024-02-13 16:32:44 +00:00
|
|
|
uses: actions/checkout@v4
|
2020-01-28 23:22:27 +00:00
|
|
|
- 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
|