Skip to content

Try fixing a GitHub workflow canceling issue #1

Try fixing a GitHub workflow canceling issue

Try fixing a GitHub workflow canceling issue #1

Workflow file for this run

# -*- yaml-indent-offset: 2; -*-
name: CI
on:
pull_request:
push:
branches:
- master
jobs:
sanity:
strategy:
fail-fast: false
matrix:
emacs_version:
- 28.1
- 28.2
- 29.1
# - snapshot
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
continue-on-error: true
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
steps:
- name: Setup Emacs
uses: purcell/setup-emacs@master
with:
version: ${{ matrix.emacs_version }}
- name: Checkout PEW
uses: actions/checkout@v3
- name: Test - Fresh startup with package installation
run: ./pew/tests/test-init.sh $(pwd)
- name: Test - Normal startup
run: ./pew/tests/test-init.sh $(pwd)
- name: Test - Mini startup
run: ./pew/tests/test-init-mini.sh $(pwd)
- name: Test - pewcfg unittests
run: ./pew/site-lisp/pewcfg/tests/run-tests.sh $(pwd)