Skip to content

Commit

Permalink
Switch to GitHub Actions for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jcoglan committed Jun 23, 2021
1 parent feb5c6d commit 97f5790
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 16 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
on:
- push
- pull_request

jobs:
test:
strategy:
fail-fast: false
matrix:
node:
- '8'
- '9'
- '10'
- '11'
- '12'
- '13'
- '14'
- '15'
- '16'
name: node.js v${{ matrix.node }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}

- run: node --version
- run: npm install
- run: npm test
15 changes: 0 additions & 15 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 @@
# Canopy [![Build status](https://travis-ci.org/jcoglan/canopy.svg?branch=master)](https://travis-ci.org/jcoglan/canopy)
# Canopy

Canopy is a parser compiler targeting Java, JavaScript, Python and Ruby. It
takes a file describing a [parsing expression grammar][1] and compiles it into a
Expand Down

0 comments on commit 97f5790

Please sign in to comment.