Skip to content

Commit

Permalink
ci: Update Python version and actions in workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
KarimAziev committed Nov 8, 2024
1 parent 13193a2 commit 0e6a9d4
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/melpazoid.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v1
with: { python-version: 3.9 }
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install
run: |
python -m pip install --upgrade pip
Expand All @@ -23,8 +24,5 @@ jobs:
- name: Run
env:
LOCAL_REPO: ${{ github.workspace }}
# RECIPE is your recipe as written for MELPA:
RECIPE: (igist :repo "KarimAziev/igist" :fetcher github)
# set this to false (or remove it) if the package isn't on MELPA:
EXIST_OK: false
run: echo $GITHUB_REF && make -C ~/melpazoid
run: echo $GITHUB_REF && make -C ~/melpazoid

0 comments on commit 0e6a9d4

Please sign in to comment.