Skip to content

Commit

Permalink
add tests against daily builds
Browse files Browse the repository at this point in the history
  • Loading branch information
BradyAJohnston committed Jan 8, 2025
1 parent 5b9db1a commit cd932c7
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test-daily.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Test Daily Build

on:
schedule:
- cron: '0 0 * * *'
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

0 comments on commit cd932c7

Please sign in to comment.