We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef3e17d commit 9e6e9ccCopy full SHA for 9e6e9cc
.github/workflows/main.yml
@@ -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