Skip to content

Add review doc to README #232

Add review doc to README

Add review doc to README #232

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
unix-test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
emacs_version:
- 27.2
- 28.2
- 29.1
- 29.2
steps:
- name: Set up Emacs
uses: purcell/setup-emacs@master
with:
version: ${{matrix.emacs_version}}
- name: Install Eldev
run: curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/github-eldev | sh
- name: Check out the source code
uses: actions/checkout@v4
- name: Test the project
env:
COVERALLS_FLAG_NAME: Emacs ${{ matrix.emacs_version }}
COVERALLS_PARALLEL: 1
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
eldev -dtT -C compile --warnings-as-errors
eldev -s -dtT test
eldev -s -dtT test --test-type integration
# - name: Coveralls
# env:
# COVERALLS_FLAG_NAME: Emacs ${{ matrix.emacs_version }}
# COVERALLS_PARALLEL: 1
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# run: |
# curl "https://coveralls.io/webhook?repo_name=$GITHUB_REPOSITORY&repo_token=${{ secrets.GITHUB_TOKEN }}" -d "payload[build_num]=$GITHUB_RUN_NUMBER&payload[status]=done"