mirror of
https://github.com/DictXiong/dotfiles.git
synced 2025-04-25 07:46:52 +08:00
* test.yml init * debug * debug * debug * debug * debug * debug * debug * debug
65 lines
1.4 KiB
YAML
65 lines
1.4 KiB
YAML
name: test
|
|
on:
|
|
push: ~
|
|
workflow_dispatch: ~
|
|
jobs:
|
|
test:
|
|
name: test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: install dependencies
|
|
run: |
|
|
sudo apt update
|
|
sudo apt install -y git python3 python3-pip zsh curl inetutils-ping
|
|
sudo apt remove -y vim tmux
|
|
sudo pip3 install requests
|
|
|
|
- name: checkout repo
|
|
uses: actions/checkout@v3
|
|
|
|
- name: install dfs
|
|
run: |
|
|
rev=`git rev-parse HEAD`
|
|
pwd
|
|
./install.sh
|
|
git checkout $rev
|
|
|
|
- name: antigen build
|
|
shell: /bin/zsh -ileo PIPE_FAIL {0}
|
|
run: |
|
|
echo $SHELL
|
|
antigen list
|
|
|
|
- name: check files
|
|
shell: /bin/zsh -ileo PIPE_FAIL {0}
|
|
run: |
|
|
l ~
|
|
l ~/.ssh
|
|
cat ~/.zshrc
|
|
|
|
- name: check scripts and alias
|
|
shell: /bin/zsh -ileo PIPE_FAIL {0}
|
|
run: |
|
|
cd /
|
|
dfs
|
|
dfs cd
|
|
pwd
|
|
dfs version
|
|
dfs log 1
|
|
l
|
|
dogo
|
|
tools/common.sh get_os_type
|
|
tools/common.sh get_linux_dist
|
|
bash -x tools/common.sh post_log 1 2 3
|
|
|
|
- name: check scripts and alias (no ret check)
|
|
shell: /bin/zsh -il {0}
|
|
run: |
|
|
p114 -c 4
|
|
return 0
|
|
|
|
- name: check update
|
|
shell: /bin/zsh -ileo PIPE_FAIL {0}
|
|
run: |
|
|
dfs update
|
|
dfs version |