diff options
author | Taylor R Campbell <campbell@paredit.org> | 2022-11-26 13:29:12 +0000 |
---|---|---|
committer | Taylor R Campbell <campbell@paredit.org> | 2022-11-26 13:38:58 +0000 |
commit | c26db503c2d92a248dfbb590cb9742c119aac810 (patch) | |
tree | eae72f8306195f04a7da5b78a8ce7a738d622fb6 /.github/workflows/ubuntu-latest.yml | |
parent | 0c74eb77e3d9a722cb6924e6f74e8e9b48550286 (diff) |
Add GitHub Action to run tests on ubuntu-latest.
Diffstat (limited to '.github/workflows/ubuntu-latest.yml')
-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 |