Skip to content

Commit

Permalink
Merge pull request #166 from tree-sitter/switch-to-gh-actions-ci
Browse files Browse the repository at this point in the history
Switch to GitHub Actions CI.
  • Loading branch information
patrickt authored Mar 9, 2021
2 parents fd087c7 + 6589d79 commit a58928e
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 63 deletions.
28 changes: 0 additions & 28 deletions .appveyor.yml

This file was deleted.

31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build/test
on:
push:
branches:
- "**"
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14
- run: npm install
- run: npm test
# Switching from Appveyor to Actions made Actions encounter
# problems with CRLF endings. Once we fix that (issue #164),
# please reenable these tests.
# test_windows:
# runs-on: windows-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions/setup-node@v2
# with:
# node-version: 14
# - run: npm install
# - run: npm run-script test-windows
33 changes: 0 additions & 33 deletions .travis.yml

This file was deleted.

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
tree-sitter-ruby
================

[![Build Status](https://travis-ci.org/tree-sitter/tree-sitter-ruby.svg?branch=master)](https://travis-ci.org/tree-sitter/tree-sitter-ruby)
[![Build status](https://ci.appveyor.com/api/projects/status/12nl5pyqvl75g2ws/branch/master?svg=true)](https://ci.appveyor.com/project/maxbrunsfeld/tree-sitter-ruby/branch/master)
[![build](https://github.com/tree-sitter/tree-sitter-ruby/actions/workflows/ci.yml/badge.svg)](https://github.com/tree-sitter/tree-sitter-ruby/actions/workflows/ci.yml)

Ruby grammar for [tree-sitter](https://github.com/tree-sitter/tree-sitter).

Expand Down

0 comments on commit a58928e

Please sign in to comment.