Skip to content

Julia_Test-2025-02-13-Calculate-PI-By-Monte-Carlo-method [ 1000 ] #5

Julia_Test-2025-02-13-Calculate-PI-By-Monte-Carlo-method [ 1000 ]

Julia_Test-2025-02-13-Calculate-PI-By-Monte-Carlo-method [ 1000 ] #5

Workflow file for this run

name: JULIA-Test-2025-02-13-Calculate-PI-By-Monte-Carlo-method
on:
workflow_dispatch:
inputs:
numofpoint:
description: '무작위 좌표 개수'
required: true
default: '1000'
type: string
run-name: Julia_Test-2025-02-13-Calculate-PI-By-Monte-Carlo-method [ ${{ github.event.inputs.numofpoint }} ]
jobs:
calculate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Julia
uses: julia-actions/setup-julia@v1
with:
version: '1.6'
- name: Run calculate-PI-by-Monte-Carlo-method.jl
run: python calculate-PI-by-Monte-Carlo-method.jl ${{ github.event.inputs.numofpoint }}