Skip to content

Improve testing setup. #196

Improve testing setup.

Improve testing setup. #196

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_targets: ['checkdoc', 'longlines', 'test', 'compile']
steps:
- name: Checkout
uses: actions/checkout@v2
- run-name: "${{ matrix.make_targets }} for ${{ matrix.emacs_version }}"

Check failure on line 17 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 17, Col: 9): Unexpected value 'run-name'
env:
VERSION: ${{ matrix.emacs_version }}
TARGET: ${{ matrix.make_targets }}
run: |
echo "Emacs version is: $VERSION"
>-
make docker CMD="make -k $TARGET"