Skip to content

Finding Collatz Conjectural Counterexamples ( 1000000 ) #61668

Finding Collatz Conjectural Counterexamples ( 1000000 )

Finding Collatz Conjectural Counterexamples ( 1000000 ) #61668

Workflow file for this run

name: Finding Collatz Conjectural Counterexamples
on:
schedule:
- cron: '*/5 * * * *'
workflow_dispatch:
inputs:
numFiles:
description: 'Number of calculations'
required: false
default: '1000000'
type: string
run-name: Finding Collatz Conjectural Counterexamples ( ${{ github.event.inputs.numFiles || '1000000' }} )
concurrency:
group: my-workflow-group
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '23.x'
- name: Run script
run: node script.js ${{ github.event.inputs.numFiles || '1000000' }}