Represent Graph - [ 100 ] #1
This file contains 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: Represent-Graph_Test-1-Repeating-Extract-Prime-Sequence | |
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 --project=. -e 'using Pkg; Pkg.instantiate(); Pkg.add("Plots")' | |
- name: Run Represent-n_p-Graph.jl | |
run: julia Represent-n_p-Graph.jl ${{ github.event.inputs.n }} |