mirror of
https://github.com/SqrtMinusOne/lyrics-fetcher.el.git
synced 2025-12-10 08:53:04 +03:00
ci: add melpazoid
This commit is contained in:
parent
f5b2f93763
commit
f49d4dc054
1 changed files with 30 additions and 0 deletions
30
.github/workflows/melpazoid.yml
vendored
Normal file
30
.github/workflows/melpazoid.yml
vendored
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
# 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:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python 3.6
|
||||
uses: actions/setup-python@v1
|
||||
with: { python-version: 3.6 }
|
||||
- name: Install
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
sudo apt-get install emacs && emacs --version
|
||||
git clone https://github.com/riscy/melpazoid.git ~/melpazoid
|
||||
pip install ~/melpazoid
|
||||
- name: Run
|
||||
env:
|
||||
LOCAL_REPO: ${{ github.workspace }}
|
||||
# RECIPE is your recipe as written for MELPA:
|
||||
RECIPE: (lyrics-fetcher :repo "SqrtMinusOne/lyrics-fetcher.el" :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
|
||||
Loading…
Add table
Reference in a new issue