Skip to content

Set up docs action

Set up docs action #5

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- "gh-pages"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up node
uses: actions/setup-node@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install dependencies
run: npm install
- name: Build and run unit tests
run: make test