Skip to content

Commit

Permalink
Github workflow: consider dev_windows and dev_mac branches
Browse files Browse the repository at this point in the history
  • Loading branch information
oaubert committed Nov 29, 2024
1 parent 121052e commit 6991365
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
name: Advene dev testing workflow
# Run packaging on dev branches, to test without publishing
# It can be run on dev (both OS), dev_windows (windows only) or dev_mac (mac only)

on:
push:
branches:
- dev
- dev_windows
- dev_mac

jobs:
windows:
runs-on: windows-latest
if: github.ref == 'refs/heads/dev' || github.ref == 'refs/heads/dev_windows'
strategy:
fail-fast: true

Expand Down Expand Up @@ -70,6 +75,7 @@ jobs:

macos:
runs-on: macos-latest
if: github.ref == 'refs/heads/dev' || github.ref == 'refs/heads/dev_mac'
env:
ACTIONS_STEP_DEBUG: true
steps:
Expand Down

0 comments on commit 6991365

Please sign in to comment.