Skip to content

Ratio Graph [ 10000 ] #3

Ratio Graph [ 10000 ]

Ratio Graph [ 10000 ] #3

Workflow file for this run

name: Ratio-Graph-Test-1-prime_MINUS_1-4-multiples
on:
workflow_dispatch:
inputs:
n:
description: '분포 비율 그래프 그릴 자연수 (~까지) (3 이상의 자연수)'
required: true
type: string
run-name: Ratio Graph [ ${{ github.event.inputs.n }} ]
jobs:
calculate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: pip install matplotlib
run: pip install matplotlib
- name: Run ratio-graph.py
run: python ratio-graph.py ${{ github.event.inputs.n }}