update
This commit is contained in:
parent
dad550a4b5
commit
65657481e6
3
zsh/.oh-my-zsh/.github/CODEOWNERS
vendored
Normal file
3
zsh/.oh-my-zsh/.github/CODEOWNERS
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# Plugin owners
|
||||||
|
plugins/gitfast/ @felipec
|
||||||
|
plugins/sdk/ @rgoldberg
|
17
zsh/.oh-my-zsh/.github/PULL_REQUEST_TEMPLATE.md
vendored
Normal file
17
zsh/.oh-my-zsh/.github/PULL_REQUEST_TEMPLATE.md
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
## Standards checklist:
|
||||||
|
|
||||||
|
- [ ] The PR title is descriptive.
|
||||||
|
- [ ] The PR doesn't replicate another PR which is already open.
|
||||||
|
- [ ] I have read the contribution guide and followed all the instructions.
|
||||||
|
- [ ] The code follows the code style guide detailed in the wiki.
|
||||||
|
- [ ] The code is mine or it's from somewhere with an MIT-compatible license.
|
||||||
|
- [ ] The code is efficient, to the best of my ability, and does not waste computer resources.
|
||||||
|
- [ ] The code is stable and I have tested it myself, to the best of my abilities.
|
||||||
|
|
||||||
|
## Changes:
|
||||||
|
|
||||||
|
- [...]
|
||||||
|
|
||||||
|
## Other comments:
|
||||||
|
|
||||||
|
...
|
36
zsh/.oh-my-zsh/.github/workflows/main.yml
vendored
Normal file
36
zsh/.oh-my-zsh/.github/workflows/main.yml
vendored
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
name: CI
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
types:
|
||||||
|
- opened
|
||||||
|
- synchronize
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
tests:
|
||||||
|
name: Run tests
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, macos-latest]
|
||||||
|
steps:
|
||||||
|
- name: Set up git repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Install zsh
|
||||||
|
if: runner.os == 'Linux'
|
||||||
|
run: sudo apt-get update; sudo apt-get install zsh
|
||||||
|
- name: Test installer
|
||||||
|
run: sh ./tools/install.sh
|
||||||
|
- 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
|
Loading…
Reference in New Issue
Block a user