add melpazoid CI #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: { python-version: '3.10' } | |
| - name: Install | |
| run: | | |
| sudo apt-get install emacs && emacs --version | |
| git clone https://github.com/riscy/melpazoid.git ~/melpazoid | |
| - name: Run | |
| env: | |
| LOCAL_REPO: ${{ github.workspace }} | |
| # RECIPE is your recipe as written for MELPA: | |
| RECIPE: (org-daily-reflection :fetcher github :repo "emacsomancer/org-daily-reflection") | |
| # set this to true if warnings should be treated as errors: | |
| WARN_IS_ERROR: false | |
| # set this to false (or remove it) if the package isn't on MELPA: | |
| EXIST_OK: true | |
| run: echo $GITHUB_REF && make -C ~/melpazoid |