Generate EDA² logo. #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: Generate EDA² logos | |
on: | |
push: | |
paths: | |
- '.github/workflows/Pipeline.yml' | |
- '*.py' | |
pull_request: | |
paths: | |
- '.github/workflows/Pipeline.yml' | |
- '*.py' | |
schedule: | |
- cron: '0 0 * * 5' | |
workflow_dispatch: | |
jobs: | |
Logos: | |
runs-on: ubuntu-latest | |
name: Generate logos | |
steps: | |
- name: ⏬ Repository Checkout | |
uses: actions/checkout@v4 | |
- name: 🐍 Setup Python 3.13 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.13" | |
- name: Generate EDA² logos | |
id: generate | |
run: | | |
python main.py | |
- name: Investigate | |
id: investigate | |
run: | | |
tree . |