Fix diff-hl-resolved-reference-revision
for Hg and Bzr with buffer-local diff-hl-reference-revision
#65
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
4D92 | name: CI |
on: | |
push: | |
paths: | |
- '**.el' | |
- '**ci.yml' | |
- 'Makefile' | |
branches: | |
- master | |
pull_request: | |
paths: | |
- '**.el' | |
- '**ci.yml' | |
- 'Makefile' | |
branches: | |
- master | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
continue-on-error: '${{ matrix.experimental }}' | |
strategy: | |
fail-fast: false | |
matrix: | |
emacs_version: | |
- '26.1' | |
- '26.3' | |
- '27.2' | |
- '28.2' | |
- '29.4' | |
- '30.1' | |
- 'release-snapshot' | |
experimental: [false] | |
include: | |
- emacs_version: 'snapshot' | |
experimental: true | |
steps: | |
- name: Setup Emacs | |
uses: purcell/setup-emacs@master | |
with: | |
version: ${{ matrix.emacs_version }} | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Run tests | |
run: make test |