-
Notifications
You must be signed in to change notification settings - Fork 38
46 lines (40 loc) · 1.12 KB
/
unittest.yml
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Unit Test
# see: https://help.github.com/en/actions/reference/events-that-trigger-workflows
on: [] # Trigger the workflow on pull request or merge
# pull_request:
# merge_group:
# types: [checks_requested]
defaults:
run:
shell: bash
permissions: {}
jobs:
UnitTest:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-2019]
python-version: ["3.9", "3.10", "3.11"]
exclude:
- os: macos-latest
python-version: '3.9'
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install packages and dependencies for all tests
run: |
python -m pip install --upgrade pip wheel
pip install pytest pytest-xdist
- name: Install packages
run: |
pip install -e .
- name: Run core tests
shell: bash
env:
HF_TOKEN: ${{ secrets.HF_TOKEN}}
run: |
make test