2020-04-26 17:51:19 -07:00
|
|
|
# melpazoid <https://github.com/riscy/melpazoid> build checks.
|
|
|
|
|
|
|
|
# If your package is on GitHub, enable melpazoid's checks by copying this file
|
|
|
|
# to .github/workflows/melpazoid.yml and modifying RECIPE and EXIST_OK below.
|
|
|
|
|
|
|
|
name: melpazoid
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-06-18 18:46:10 +02:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Python 3.10
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: '3.10'
|
2020-04-26 17:51:19 -07:00
|
|
|
- name: Install
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
sudo apt-get install emacs && emacs --version
|
2020-09-20 15:29:11 -07:00
|
|
|
git clone https://github.com/riscy/melpazoid.git ~/melpazoid
|
2020-04-26 17:51:19 -07:00
|
|
|
pip install ~/melpazoid
|
|
|
|
- name: Run
|
|
|
|
env:
|
2021-03-07 22:01:43 -08:00
|
|
|
LOCAL_REPO: ${{ github.workspace }}
|
2020-04-26 17:51:19 -07:00
|
|
|
# RECIPE is your recipe as written for MELPA:
|
2025-01-20 17:39:21 -06:00
|
|
|
RECIPE: (shx :fetcher github :repo "riscy/shx-for-emacs")
|
2020-04-26 17:51:19 -07:00
|
|
|
# set this to false (or remove it) if the package isn't on MELPA:
|
|
|
|
EXIST_OK: true
|
2020-05-09 18:02:12 -07:00
|
|
|
run: echo $GITHUB_REF && make -C ~/melpazoid
|