Skip to content

Represent Graph - [ 100 ] #1

Represent Graph - [ 100 ]

Represent Graph - [ 100 ] #1

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 }}