Skip to content

Added fuzzaldrin algorithm (ported to C++) as a possible choice #3

Added fuzzaldrin algorithm (ported to C++) as a possible choice

Added fuzzaldrin algorithm (ported to C++) as a possible choice #3

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches: ['master']
jobs:
test:
name: Run tests
if: |
!startsWith(github.event.pull_request.title, '[skip-ci]') &&
!startsWith(github.event.pull_request.title, '[skip-package-ci]')
runs-on: ubuntu-22.04
steps:
- name: Checkout the latest code
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Python setuptools
run: python3 -m pip install setuptools
- name: Install Dependencies
run: npm install
- name: Run tests
run: npm run test