fix: dependencies on workers

This commit is contained in:
Theo Leuthardt 2025-03-13 11:36:07 +01:00 committed by GitHub
parent 274993b16a
commit 12c3ebe5b0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -23,10 +23,13 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Dependencies (Linux/macOS)
if: runner.os != 'Windows'
run: sudo apt update && sudo apt install -y cmake g++
shell: bash
- name: Install Dependencies (Linux)
if: runner.os == 'Linux'
run: sudo apt install -y cmake g++
- name: Install Dependencies (macOS)
if: runner.os == 'macOS'
run: brew install cmake gcc
- name: Install Dependencies (Windows)
if: runner.os == 'Windows'