File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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@v6
14+ - name : Set up Python
15+ uses : actions/setup-python@v6
16+ with : { python-version: '3.10' }
17+ - name : Install
18+ run : |
19+ sudo apt-get install emacs && emacs --version
20+ git clone https://github.com/riscy/melpazoid.git ~/melpazoid
21+ - name : Run
22+ env :
23+ LOCAL_REPO : ${{ github.workspace }}
24+ # RECIPE is your recipe as written for MELPA:
25+ RECIPE : (equake :fetcher github :repo "emacsomancer/equake")
26+ # set this to true if warnings should be treated as errors:
27+ WARN_IS_ERROR : false
28+ # set this to false (or remove it) if the package isn't on MELPA:
29+ EXIST_OK : true
30+ run : echo $GITHUB_REF && make -C ~/melpazoid
You can’t perform that action at this time.
0 commit comments