Merge pull request #1185 from radian-software/rr-update-docs #208
This file contains hidden or 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: | |
branches: | |
- develop | |
- master | |
pull_request: {} | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
emacs_version: [25, 26, 27, 28, 29] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: GHCR login | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: CI | |
env: | |
VERSION: ${{ matrix.emacs_version }} | |
run: >- | |
make docker | |
CMD="make compile test smoke checkdoc longlines" | |
DOCKER_BASE=ghcr.io/radian-software/emacs-base | |
NO_SUDO_DOCKER=1 |