Represent Graph - [ 10 ] #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test-2025-03-30-the-ratio-of-even-indexed-primes-product-to-odd-indexed-primes-product | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| n: | |
| description: '2부터 n번째 소수까지 확인' | |
| required: true | |
| type: string | |
| run-name: Represent Graph - [ ${{ github.event.inputs.n }} ] | |
| jobs: | |
| calculate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Julia | |
| uses: julia-actions/setup-julia@v2 | |
| with: | |
| version: '1' | |
| - name: Install dependencies | |
| run: julia -e 'import Pkg; Pkg.add("Plots")' | |
| - name: Run Represent-Graph.jl | |
| run: julia Represent-Graph.jl ${{ github.event.inputs.n }} |