Skip to content

Commit

Permalink
add daily build
Browse files Browse the repository at this point in the history
  • Loading branch information
zachcp committed Feb 11, 2025
1 parent f55e85d commit 2ce376a
Showing 1 changed file with 23 additions and 21 deletions.
44 changes: 23 additions & 21 deletions .github/workflows/test-daily.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,27 @@
name: Test Daily Build

on:
schedule:
- cron: '0 0 * * *'
push:
branches: ["20250211-biotite1"]
pull_request:
branches: ["20250211-biotite1"]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 4
fail-fast: false
matrix:
version: ["daily"]
os: [ubuntu-latest, macos-14, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: BradyAJohnston/[email protected]
with:
version: ${{ matrix.version }}
- name: Install in Blender
run: |
blender -b -P tests/python.py -- -m pip install ".[test]"
- name: Run Tests
run: |
blender -b -P tests/run.py -- -vv tests --cov --cov-report=xml
build:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 4
fail-fast: false
matrix:
version: ["daily"]
os: [ubuntu-latest, macos-14, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: BradyAJohnston/[email protected]
with:
version: ${{ matrix.version }}
- name: Install in Blender
run: |
blender -b -P tests/python.py -- -m pip install ".[test]"
- name: Run Tests
run: |
blender -b -P tests/run.py -- -vv tests --cov --cov-report=xml

0 comments on commit 2ce376a

Please sign in to comment.