Skip to content

Commit

Permalink
try switching to GH acitons
Browse files Browse the repository at this point in the history
  • Loading branch information
mourner committed Jun 26, 2024
1 parent 620a3e0 commit 96f0d72
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 42 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI
on: [push, pull_request]
jobs:
node:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 20

- name: Install dependencies
run: npm ci

- name: Run tests
run: npm test
cpp:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Test C++
run: make test
42 changes: 0 additions & 42 deletions .travis.yml

This file was deleted.

0 comments on commit 96f0d72

Please sign in to comment.