Skip to content

Commit 9e6e9cc

Browse files
authored
Create main.yml
1 parent ef3e17d commit 9e6e9cc

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/main.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Test-2025-03-30-the-ratio-of-even-indexed-primes-product-to-odd-indexed-primes-product
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
n:
7+
description: '2부터 n번째 소수까지 확인'
8+
required: true
9+
type: string
10+
11+
run-name: Represent Graph - [ ${{ github.event.inputs.n }} ]
12+
13+
jobs:
14+
calculate:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
- name: Set up Julia
19+
uses: julia-actions/setup-julia@v2
20+
with:
21+
version: '1'
22+
- name: Install dependencies
23+
run: julia -e 'import Pkg; Pkg.add("Plots")'
24+
- name: Run Represent-Graph.jl
25+
run: julia Represent-Graph.jl ${{ github.event.inputs.n }}

0 commit comments

Comments
 (0)