Revert "chore: simplify tests workflow"
This reverts commit f3e6987ccd
.
This commit is contained in:
parent
595a4272fe
commit
19f3788ffc
@ -3,16 +3,43 @@ on: [push, pull_request]
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
emacs_version:
|
emacs_version:
|
||||||
- emacs-26-alpine-ci-eask
|
- 26.3
|
||||||
- emacs-27-alpine-ci-eask
|
- 27.2
|
||||||
- emacs-28-alpine-ci-eask
|
- 28.2
|
||||||
- emacs-29-alpine-ci-eask
|
- 29.1
|
||||||
- emacs-master-alpine-ci-eask
|
- snapshot
|
||||||
runs-on: ${{ matrix.emacs_version }}
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- uses: actions/cache@v3
|
||||||
|
id: cache-nix-conf
|
||||||
|
with:
|
||||||
|
path: /etc/nix
|
||||||
|
key: cache-nix-conf-000
|
||||||
|
|
||||||
|
- uses: actions/cache@v3
|
||||||
|
id: cache-nix-packages
|
||||||
|
with:
|
||||||
|
path: /nix
|
||||||
|
key: cache-nix-packages-000
|
||||||
|
|
||||||
|
- uses: purcell/setup-emacs@master
|
||||||
|
with:
|
||||||
|
version: ${{ matrix.emacs_version }}
|
||||||
|
|
||||||
|
- uses: actions/cache@v3
|
||||||
|
id: cache-eask-packages
|
||||||
|
with:
|
||||||
|
path: .eask
|
||||||
|
key: cache-eask-packages-000
|
||||||
|
|
||||||
|
- uses: emacs-eask/setup-eask@master
|
||||||
|
with:
|
||||||
|
version: 'snapshot'
|
||||||
|
|
||||||
- name: "Execute Eask CI"
|
- name: "Execute Eask CI"
|
||||||
run: make ci
|
run: make ci
|
||||||
|
Loading…
Reference in New Issue
Block a user