Skip to content

Commit ed595e4

Browse files
authored
Move from Travic to GitHub actions and update readme (#17)
1 parent 262797b commit ed595e4

File tree

3 files changed

+22
-17
lines changed

3 files changed

+22
-17
lines changed

.github/ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Build/test
2+
on:
3+
push:
4+
branches:
5+
- "**"
6+
jobs:
7+
test:
8+
runs-on: ${{ matrix.os }}
9+
strategy:
10+
fail-fast: true
11+
matrix:
12+
os: [macos-latest, ubuntu-latest, windows-latest]
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: actions/setup-node@v2
16+
with:
17+
node-version: 14
18+
- run: npm install
19+
- run: npm test

.travis.yml

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

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
tree-sitter-scala
22
=================
33

4-
[![Build Status](https://travis-ci.org/tree-sitter/tree-sitter-scala.svg?branch=master)](https://travis-ci.org/tree-sitter/tree-sitter-scala)
4+
[![Test the grammar](https://github.com/tree-sitter/tree-sitter-scala/actions/workflows/ci.yml/badge.svg)](https://github.com/tree-sitter/tree-sitter-scala/actions/workflows/ci.yml)
55

66
Scala grammar for [tree-sitter](https://github.com/tree-sitter/tree-sitter).
77

88
References
99

10-
* [The Scala Language Specification](http://www.scala-lang.org/docu/files/ScalaReference.pdf)
11-
* [Scala Syntax Summary](https://www.scala-lang.org/files/archive/spec/2.11/13-syntax-summary.html)
10+
* [The Scala Language Specification](https://www.scala-lang.org/files/archive/spec/2.13/)
11+
* [Scala Syntax Summary](https://www.scala-lang.org/files/archive/spec/2.13/13-syntax-summary.html)
1212

1313
Development
1414
-----------

0 commit comments

Comments
 (0)