Fix clone location for testing bootstrap

main
Ensar Sarajčić 2022-05-05 16:26:33 +02:00
parent d86e7b93d0
commit df72c88337
1 changed files with 9 additions and 2 deletions

View File

@ -14,8 +14,12 @@ jobs:
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
with:
path: '.dotfiles'
- name: Run bootstrap
run: make bootstrap
run: |
cd ~/.dotfiles
make bootstrap
env:
DOTFILES_CI: 1
- name: Install neovim
@ -31,12 +35,15 @@ jobs:
run: |
git clone https://github.com/wbthomason/packer.nvim "$env:LOCALAPPDATA\nvim-data\site\pack\packer\start\packer.nvim"
- name: Run neovim checks
run: make check_neovim
run: |
cd ~/.dotfiles
make check_neovim
env:
DOTFILES_CI: 1
- name: Run tests
if: ${{ matrix.platform != 'windows-latest' }}
run: |
cd ~/.dotfiles
source ~/.profile
make run_tests
env: