Skip to content

Commit

Permalink
Merge pull request #9 from 10sr/ga
Browse files Browse the repository at this point in the history
Add Github Actions CI
  • Loading branch information
10sr authored Sep 20, 2021
2 parents b2eadf1 + bad4f96 commit c349795
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 14 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
name: build

on:
push:
branches:
- master
pull_request:
types: [opened, synchronize]
branches:
- 'master'
release:
types: [published]

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
emacs_version:
- "24.5"
- "25.3"
- "26.3"
- "27.1"
experimental: [false]
include:
- emacs_version: snapshot
experimental: true
continue-on-error: ${{ matrix.experimental }}
steps:
- name: Checkout
uses: actions/checkout@v1
with:
submodules: recursive
- name: Setup Emacs
uses: purcell/setup-emacs@master
with:
version: ${{ matrix.emacs_version }}
- name: Run tests
run: make check
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Build Status](https://travis-ci.org/10sr/with-venv-el.svg?branch=master)](https://travis-ci.org/10sr/with-venv-el)
[![build](https://github.com/10sr/with-venv-el/actions/workflows/build.yaml/badge.svg)](https://github.com/10sr/with-venv-el/actions/workflows/build.yaml)
[![MELPA](https://melpa.org/packages/with-venv-badge.svg)](https://melpa.org/#/with-venv)
[![MELPA Stable](https://stable.melpa.org/packages/with-venv-badge.svg)](https://stable.melpa.org/#/with-venv)

Expand Down

0 comments on commit c349795

Please sign in to comment.