Files
quick-find-files.el/.gitea/workflows/test.yml
Lucien Cartier-Tilet 49b6ca3efe
All checks were successful
CI / build (26.3) (push) Successful in 3m7s
CI / build (27.2) (push) Successful in 3m55s
CI / build (28.2) (push) Successful in 3m32s
CI / build (29.1) (push) Successful in 3m39s
CI / build (snapshot) (push) Successful in 2m50s
feat: add CI
2023-12-07 19:20:31 +01:00

46 lines
914 B
YAML

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
emacs_version:
- 26.3
- 27.2
- 28.2
- 29.1
- snapshot
steps:
- 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"
run: make ci