diff --git a/.github/workflows/melpazoid.yml b/.github/workflows/melpazoid.yml new file mode 100644 index 0000000..16f7c33 --- /dev/null +++ b/.github/workflows/melpazoid.yml @@ -0,0 +1,30 @@ +# 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.9 + uses: actions/setup-python@v1 + with: { python-version: 3.9 } + - 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: (elfeed-summary :repo "SqrtMinusOne/perspective-exwm" :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 diff --git a/perspective-exwm.el b/perspective-exwm.el index 4f86a0a..57d33d7 100644 --- a/perspective-exwm.el +++ b/perspective-exwm.el @@ -5,7 +5,7 @@ ;; Author: Korytov Pavel ;; Maintainer: Korytov Pavel -;; Version: 0.1.4 +;; Version: 0.2.0 ;; Package-Requires: ((emacs "27.1") (burly "0.2-pre") (exwm "0.26") (perspective "2.17")) ;; Homepage: https://github.com/SqrtMinusOne/perspective-exwm.el