Skip to content

braipy

braipy #7

Workflow file for this run

# ワークフロー名
name: braipy
# 発火タイミング
on:
workflow_dispatch:
jobs:
build:
# Ubuntuの最新版環境内で処理
runs-on: ubuntu-latest
# 実行する処理&コマンド指定
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.12
uses: actions/setup-python@v1
with:
python-version: 3.12
- name: Install dependencies
run: |
# pip更新
python -m pip install --upgrade pip
# 必要なパッケージインストール
# pip install matplotlib
- name: Run script
run: |
# main.pyの実行
python test.py