Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilkrzyskow authored Feb 29, 2024
1 parent 3fe320e commit c9dc11e
Showing 1 changed file with 39 additions and 1 deletion.
40 changes: 39 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- '**'

jobs:
deploy:
macOS:
runs-on: macos-latest
steps:
- name: Install Checkout
Expand All @@ -20,4 +20,42 @@ jobs:
run: |
python -m venv venv
source venv/bin/activate
pip install cairosvg
python ./macOS.py
python ./Linux.py
python ./__main__.py
Linux:
runs-on: ubuntu-latest
steps:
- name: Install Checkout
uses: actions/checkout@v4
- name: Install Python
id: install-python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Run Python stuff in order
run: |
python -m venv venv
source venv/bin/activate
pip install cairosvg
python ./Linux.py
python ./__main__.py
Windows:
runs-on: windows-latest
steps:
- name: Install Checkout
uses: actions/checkout@v4
- name: Install Python
id: install-python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Run Python stuff in order
run: |
python -m venv venv
source venv/Scripts/activate
pip install cairosvg
python ./Windows.py
python ./Linux.py
python ./__main__.py

0 comments on commit c9dc11e

Please sign in to comment.