diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ubuntu-latest.yml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/.github/workflows/ubuntu-latest.yml b/.github/workflows/ubuntu-latest.yml new file mode 100644 index 0000000..79004c8 --- /dev/null +++ b/.github/workflows/ubuntu-latest.yml @@ -0,0 +1,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 |