From 9776b59024eafa90205c8d1473f1a55ff5a7260d Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Sat, 17 Aug 2024 15:28:10 -0400 Subject: [PATCH] Update tests --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cacb49d..4bcfbe9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,18 +60,18 @@ jobs: - name: Install run: | - python -m venv ~/venv - source ~/venv/bin/activate - pip install --upgrade pip - pip install git+https://github.com/riscy/melpazoid.git + python -m pip install --upgrade pip + # sudo apt-get install emacs && emacs --version + git clone https://github.com/riscy/melpazoid.git ~/melpazoid + # pip install https://github.com/riscy/melpazoid.git - name: Run melpazoid env: RECIPE: (dir-config :repo "jamescherti/dir-config.el" :branch "${{ github.ref_name }}" :fetcher github :files ("dir-config.el")) EXIST_OK: false - run: 'source ~/venv/bin/activate && echo $GITHUB_REF && make -C ~/melpazoid' + run: 'echo $GITHUB_REF && echo "Emacs version $(emacs --version)" && make -C ~/melpazoid' - name: Run tests - run: source ~/venv/bin/activate && make test + run: make test env: CASK_PATH: $HOME/.cask/bin