-
Notifications
You must be signed in to change notification settings - Fork 5
27 lines (25 loc) · 828 Bytes
/
Copy pathtest-daily.yml
File metadata and controls
27 lines (25 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: BradyAJohnston/setup-blender@v3
with:
version: ${{ matrix.version }}
- name: Install in Blender
run: |
blender -b -P tests/python.py -- -m pip install --upgrade pip
blender -b -P tests/python.py -- -m pip install . --group dev
- name: Run Tests
run: |
blender -b -P tests/run.py -- -vv tests --cov --cov-report=xml