Skip to content

Improve testing setup. #197

Improve testing setup.

Improve testing setup. #197

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request: {}
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
emacs_version: [25, 26, 27, 28]
make_target: ['checkdoc', 'longlines', 'test', 'compile']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: CI
env:
VERSION: ${{ matrix.emacs_version }}
TARGET: ${{ matrix.make_target }}
run: |
echo "Emacs version is: $VERSION"
>-
make docker CMD="make -k $TARGET VERSION=$VERSION"