Skip to content

Commit 384d3d7

Browse files
committed
1 parent 635ab2f commit 384d3d7

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/melpazoid.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# melpazoid <https://github.com/riscy/melpazoid> build checks.
2+
3+
# If your package is on GitHub, enable melpazoid's checks by copying this file
4+
# to .github/workflows/melpazoid.yml and modifying RECIPE and EXIST_OK below.
5+
6+
name: melpazoid
7+
on: [push, pull_request]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
- name: Set up Python 3.10
15+
uses: actions/setup-python@v4
16+
with:
17+
python-version: '3.10'
18+
- name: Install
19+
run: |
20+
python -m pip install --upgrade pip
21+
sudo apt-get install emacs && emacs --version
22+
git clone https://github.com/riscy/melpazoid.git ~/melpazoid
23+
pip install ~/melpazoid
24+
- name: Run
25+
env:
26+
LOCAL_REPO: ${{ github.workspace }}
27+
# RECIPE is your recipe as written for MELPA:
28+
RECIPE: (shx :fetcher github :repo "aglet/sparkweather")
29+
# set this to false (or remove it) if the package isn't on MELPA:
30+
#EXIST_OK: true
31+
run: echo $GITHUB_REF && make -C ~/melpazoid

0 commit comments

Comments
 (0)