chore: add new general config #1791
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: install | |
on: | |
push: | |
jobs: | |
basic-ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo apt update | |
- name: start.sh env | |
run: ./start.sh -y env | |
- name: install.sh | |
run: ./install.sh -y | |
- name: validate symbolic links | |
run: | | |
test "$(readlink -f ~/.zshrc.shared)" = "$(pwd)/zsh/zshrc.shared" | |
- name: validate installation of requirements on both shell | |
run: | | |
bash -c hash vim batcat bmon | |
zsh -c hash vim batcat bmon | |
basic-osx: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: start.sh env | |
run: ./start.sh -y env | |
- name: install.sh | |
run: ./install.sh -y | |
- name: validate symbolic links | |
run: | | |
test "$(readlink -f ~/.zshrc.shared)" = "$(pwd)/zsh/zshrc.shared" | |
- name: validate installation of requirements on both shell | |
run: | | |
bash -c hash vim batcat bmon | |
zsh -c hash vim batcat bmon |