blob: 3d376d9a338c7406cc0db5c1122d44abab455918 (
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@v4
- name: install emacs
run: >
sudo apt-get update &&
sudo apt-get install emacs
- name: check.sh
run: ./check.sh
|