From c26db503c2d92a248dfbb590cb9742c119aac810 Mon Sep 17 00:00:00 2001 From: Taylor R Campbell Date: Sat, 26 Nov 2022 13:29:12 +0000 Subject: Add GitHub Action to run tests on ubuntu-latest. --- .github/workflows/ubuntu-latest.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/ubuntu-latest.yml (limited to '.github') 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 -- cgit v1.2.1