Added fuzzaldrin algorithm (ported to C++) as a possible choice #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |