From 2b1d5100a7de3ca33798dcb69166d4ffd935323c Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Sun, 24 Jan 2021 12:44:57 +0100 Subject: ci: trying out Github actions for this repository MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miquel Sabaté Solà --- .github/workflows/ci.yml | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/ci.yml (limited to '.github/workflows/ci.yml') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..dea50a3 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,39 @@ +name: CI + +on: + pull_request: + push: + paths-ignore: + - '**.md' + - '**.org' + +jobs: + build: + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest] + emacs_version: + - 25.1 + - 25.2 + - 25.3 + - 26.1 + - 26.2 + - 26.3 + - 27.1 + - snapshot + include: + - os: macos-latest + emacs_version: 27.1 + steps: + - uses: purcell/setup-emacs@master + with: + version: ${{ matrix.emacs_version }} + + - uses: actions/setup-go@v2 + + - uses: actions/checkout@v2 + + - name: Check startup + run: make ci -- cgit v1.2.3