splunk #772
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
env: | |
AUTH_USERS: haomingw | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
if: startsWith(matrix.os, 'ubuntu') | |
run: | | |
lsb_release -a | |
sudo apt install zsh tmux | |
- name: Configure vim | |
run: | | |
bash install.sh vim | |
vim --version | |
- name: Install and configure Oh My Zsh | |
run: | | |
zsh --version | |
bash install.sh oh-my-zsh | |
- name: Configure faster-zsh | |
run: | | |
bash install.sh faster-zsh | |
- name: Configure tmux-docker | |
if: startsWith(matrix.os, 'ubuntu') | |
run: | | |
tmux -V | |
bash install.sh tmux-docker |