Skip to content

Commit

Permalink
add arm64 unit test (#847)
Browse files Browse the repository at this point in the history
Co-authored-by: wujiasheng03 <[email protected]>
  • Loading branch information
noO0oOo0ob and wujiasheng03 authored Apr 26, 2024
1 parent 0a0eaa3 commit 5ec6c48
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,27 @@ jobs:
run: |
python -m pytest tests --cov=lyrebird
unittest-arm64:
strategy:
matrix:
python-version: ["3.8.10", "3.9.13", "3.10.11", "3.11.9"]
runs-on: macos-latest
name: Python ${{ matrix.python-version }} tests
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install python dependencies
run: |
pip install pip -U
pip install -r requirements.txt.lock -U
pip install -r requirements.dev.txt -U
- name: Unit Test
run: |
python -m pytest tests --cov=lyrebird
e2etest:
runs-on: macos-13
steps:
Expand Down

0 comments on commit 5ec6c48

Please sign in to comment.