waybar background #24
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: Test | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
name: Test dotfiles linking and pre/post installation steps | |
steps: | |
- name: Install tools | |
run: sudo apt-get update -y && sudo apt-get install fish git stow python3 python3-pip vim | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Remove bashrc* | |
run: rm -rf ~/.bash* | |
- name: Install dotfiles | |
run: ./install-all.sh | |
- name: Check vim can open without errors | |
run: vim -c 'qall' | |
- name: Check git doesn't error | |
run: cd $(mktemp -d); git init | |
- name: Check starting tmux session | |
run: tmux new -s test-session -d | |