Skip to content

Commit

Permalink
added empty lines in workflows for better comparability
Browse files Browse the repository at this point in the history
  • Loading branch information
KlausMu committed Dec 30, 2024
1 parent b8b0468 commit 20eb4e3
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 1 deletion.
26 changes: 25 additions & 1 deletion .github/workflows/build-platformio-macos.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
name: macOS build

on: [push,workflow_dispatch, pull_request]
on: [push,workflow_dispatch,pull_request]

jobs:
build:
runs-on: macos-latest








steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
Expand All @@ -22,6 +29,23 @@ jobs:
run: |
brew install sdl2 sdl2_image
- name: Install PlatformIO Core
run: pip install --upgrade platformio

Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/build-platformio-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ jobs:
build:
runs-on: ubuntu-latest








steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
Expand All @@ -24,6 +31,21 @@ jobs:
sudo apt upgrade -y
sudo apt install -y libsdl2-dev libsdl2-image-dev
- name: Install PlatformIO Core
run: pip install --upgrade platformio

Expand Down

0 comments on commit 20eb4e3

Please sign in to comment.