Fix Invalid application/json in request in some REST requests #90
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: | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
jobs: | |
build: | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
emacs_version: | |
- '26.1' | |
- '26.2' | |
- '26.3' | |
- '27.1' | |
- 'snapshot' | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: purcell/setup-emacs@master | |
with: | |
version: ${{ matrix.emacs_version }} | |
- name: Run tests | |
run: ./run-tests.sh |