Add function to report when a style produces superscript cites #416
Workflow file for this run
This file contains 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
name: CI | |
on: [ push, pull_request ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
emacs_version: | |
# - 26.3 | |
- 27.2 | |
- 28.1 | |
- 29.1 | |
steps: | |
- uses: purcell/setup-emacs@master | |
with: | |
version: ${{ matrix.emacs_version }} | |
- uses: conao3/setup-cask@master | |
- uses: actions/checkout@v2 | |
- name: Test | |
env: | |
COVERALLS_FLAG_NAME: Emacs ${{ matrix.emacs_version }} | |
run: | | |
git clone --depth 1 https://github.com/citation-style-language/test-suite.git test/suite | |
git clone --depth 1 https://github.com/citation-style-language/locales.git test/locales | |
cask install | |
cask build | |
make test |