Skip to content

Commit

Permalink
Migration to GitHub Action (#342)
Browse files Browse the repository at this point in the history
* Migration to GitHub Action

* Update badge
  • Loading branch information
liuchengxu authored Sep 22, 2020
1 parent 7972a7c commit 9c9adf1
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 8 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: ci

on: [push, pull_request]

jobs:
vint:
strategy:
fail-fast: false

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@master
- name: Run vint with reviewdog
uses: reviewdog/[email protected]
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review
7 changes: 0 additions & 7 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,5 +1,5 @@
# Vista.vim
[![Build Status](https://travis-ci.org/liuchengxu/vista.vim.svg?branch=master)](https://travis-ci.org/liuchengxu/vista.vim)
[![CI](https://github.com/liuchengxu/vista.vim/workflows/ci/badge.svg)](https://github.com/liuchengxu/vista.vim/actions?workflow=ci)

View and search LSP symbols, tags in Vim/NeoVim.

Expand Down
10 changes: 10 additions & 0 deletions ci/install_docker.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/usr/bin/env bash

# Install Docker
sudo apt-get update
sudo apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update
sudo apt-get install -y docker-ce docker-ce-cli containerd.io
docker --version
File renamed without changes.

0 comments on commit 9c9adf1

Please sign in to comment.