blob: 79004c8a751a32c9978200b1d6eca5bc40fe6cb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
name: paredit test
on:
push:
paths-ignore:
- .gitignore
- COPYING
- CREDITS
- NEWS
pull_request:
paths-ignore:
- .gitignore
- COPYING
- CREDITS
- NEWS
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: install emacs
run: >
sudo apt-get update &&
sudo apt-get install emacs
- name: check.sh
run: ./check.sh
|