Skip to content

Commit

Permalink
ci: use GitHub Actions instead
Browse files Browse the repository at this point in the history
  • Loading branch information
1000ch committed Sep 21, 2021
1 parent 76ba940 commit 6fda771
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 11 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: test
on:
- push
- pull_request
jobs:
test:
name: Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version:
- 14
- 12
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
10 changes: 0 additions & 10 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 @@
# simplehttp2server-cli [![Build Status](https://travis-ci.org/1000ch/simplehttp2server-cli.svg?branch=master)](https://travis-ci.org/1000ch/simplehttp2server-cli)
# simplehttp2server-cli ![GitHub Actions Status](https://github.com/1000ch/simplehttp2server-cli/workflows/test/badge.svg)

> simplehttp2server serves the current directory on an HTTP/2.0 capable server. This server is for development purposes only.
Expand Down

0 comments on commit 6fda771

Please # to comment.