From 60563cce54e9f96fb51d55aa1a6803539c5d5233 Mon Sep 17 00:00:00 2001 From: Kentaro Ohkouchi Date: Wed, 27 Mar 2024 02:25:12 +0900 Subject: [PATCH] Use setup-python@v5 --- .github/workflows/ci.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8efd736..dfe804e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,9 @@ jobs: - "29.3" steps: - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.11' - uses: purcell/setup-emacs@master with: version: ${{ matrix.emacs-version }} @@ -31,16 +34,15 @@ jobs: with: version: 'snapshot' - run: mv .emacs.d/el-get/.gitkeep .emacs.d/el-get/.status.el - - run: emacs -Q -l .emacs.d/early-init.el -l .emacs.d/init.el --batch - run: composer install working-directory: .emacs.d/bin - run: yarn install --frozen-lockfile working-directory: .emacs.d/bin - run: | - /usr/bin/python3 -m venv . - source bin/activate - bin/pip3 install -r bin/requirements.txt + python -m venv . + pip3 install -r bin/requirements.txt working-directory: .emacs.d + - run: emacs -Q -l .emacs.d/early-init.el -l .emacs.d/init.el --batch - name: Eask run: | eask clean all