zsh: add alacritty.toml #79
Workflow file for this run
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-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: make symlink of $HOME/dotfiles | |
run: | |
ln -sv $GITHUB_WORKSPACE $HOME/dotfiles | |
- name: update for git submodule w/ git scheme | |
run: | | |
# see: https://github.com/actions/checkout/issues/14 | |
# | |
# disable the keychain credential helper | |
git config --global credential.helper "" | |
# enable the local store credential helper | |
git config --global --add credential.helper store | |
# add credential | |
echo "https://x-access-token:${{ secrets.ACCESS_TOKEN }}@github.com" >> ~/.git-credentials | |
# tell git to use https instead of ssh whenever it encounters it | |
sh -c 'git config --global url."https://github.com/".insteadof [email protected]:' | |
- name: Install dependencies | |
run: | | |
sudo apt-get install -y --no-install-recommends vim zsh python3-pip build-essential | |
pip3 install -U pip | |
pip3 install shellcheck-py | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
- name: Run ShellCheck | |
run: shellcheck ./install | |
- name: Run ./install | |
run: ./install | |