From 18a1b3c05bdf352f1962e65a4df44791fe544d3b Mon Sep 17 00:00:00 2001 From: Patrick Winter Date: Tue, 22 Oct 2019 18:03:04 +0200 Subject: [PATCH] Add github test action --- .github/workflows/test.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..69a816b --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,26 @@ +name: CI + +on: + push: + paths-ignore: + - '**/*.md' + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + matrix: + emacs_version: + - 26.1 + - 26.2 + - 26.3 + - snapshot + steps: + - name: Set up Emacs + uses: purcell/setup-emacs@v1.0 + with: + version: ${{ matrix.emacs_version }} + - uses: actions/checkout@v1 + - name: Run a one-line script + run: echo Hello, world!