Skip to content

Improve Content-Encoding handling #191

Improve Content-Encoding handling

Improve Content-Encoding handling #191

Workflow file for this run

name: CI
on:
push:
paths-ignore:
- '**.md'
- 'examples/*'
- 'extra/*'
pull_request:
schedule:
- cron: '0 12 1 * *'
jobs:
test:
name: Checks/Tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
emacs_version:
- '26.3'
- '27.1'
- '29.1'
- snapshot
os:
- ubuntu-latest
- macos-latest
steps:
- uses: purcell/setup-emacs@master
with:
version: ${{ matrix.emacs_version }}
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.10.6'
- name: Setup checks
run: 'make setup-check'
- name: Run checks
run: 'make check'
- name: Setup unit testing
run: 'make setup-tests'
- name: Run ERT unit tests
env:
WAIT_TIME: 3
run: 'make test'