From bded83df3bba63ea6336eeec7191eced23c26653 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Tue, 16 Mar 2021 20:27:41 +0100 Subject: Facilitate building and checking * .github/workflows/test.yml: new file. Make GitHub Actions check each PR. * Makefile: new file. Use makel to simplify checking of the project quality. * .gitignore: new file. --- .github/workflows/test.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/test.yml (limited to '.github') diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..3e2d1c4 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,26 @@ +name: CI + +on: + pull_request: + push: + +jobs: + test: + runs-on: ubuntu-latest + strategy: + matrix: + emacs_version: + - 27.1 + steps: + - name: Set up Emacs + uses: purcell/setup-emacs@master + with: + version: ${{matrix.emacs_version}} + + - name: Check out the source code + uses: actions/checkout@v2 + + - name: Test the project + run: | + make ci-dependencies + make check -- cgit v1.2.3-54-g00ecf