Skip to content

Commit 680ec93

Browse files
author
Chen Bin
committed
use github workflows instead of travis ci
1 parent 3bf010d commit 680ec93

File tree

3 files changed

+28
-17
lines changed

3 files changed

+28
-17
lines changed

‎.github/workflows/test.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
fail-fast: false
10+
matrix:
11+
emacs_version:
12+
- 25.3
13+
- 26.3
14+
- 27.1
15+
- snapshot
16+
steps:
17+
- uses: purcell/setup-emacs@master
18+
with:
19+
version: ${{ matrix.emacs_version }}
20+
21+
- uses: actions/checkout@v2
22+
23+
- name: Print emacs version
24+
run: emacs --version
25+
26+
- name: Run tests
27+
run: make test

‎.travis.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

‎README.org

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
* find-file-in-project
22

3-
[[https://travis-ci.org/redguardtoo/find-file-in-project][https://travis-ci.org/redguardtoo/find-file-in-project.svg?branch=master]]
3+
[[https://github.com/redguardtoo/find-file-in-project/actions/workflows/test.yml][https://github.com/redguardtoo/find-file-in-project/actions/workflows/test.yml/badge.svg]]
44
[[http://melpa.org/#/find-file-in-project][file:http://melpa.org/packages/find-file-in-project-badge.svg]] [[http://stable.melpa.org/#/find-file-in-project][file:http://stable.melpa.org/packages/find-file-in-project-badge.svg]]
55

66
Find file/directory and review Diff/Patch/Commit quickly everywhere.

0 commit comments

Comments
 (0)