forked from aarnphm/whispercpp
-
Notifications
You must be signed in to change notification settings - Fork 9
47 lines (47 loc) · 1.29 KB
/
ci.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
47
name: CI
on:
push:
branches:
- develop
pull_request:
branches:
- develop
schedule:
- cron: '00 12 * * 1' # Monday 12 PM UTC
concurrency:
group: ci-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
LINES: 200
COLUMNS: 200
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#defaultsrun
defaults:
run:
shell: bash --noprofile --norc -exo pipefail {0}
jobs:
unit-tests:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
exclude:
- os: 'windows-latest'
name: Integration tests (${{ matrix.os }})
runs-on: ${{ matrix.os }}
timeout-minutes: 90
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # fetch all tags and branches
- name: Setup CI
uses: ./.github/actions/setup-repo
with:
python-version: '3.8' # sync with default version in WORKSPACE.
- name: Install development dependencies and bindings
run: |
bazel run pypi_update
python -m pip install -r requirements/pypi.txt
python -m pip install .
- name: Run tests on python${{ matrix.python-version }}
run: bazel test tests:ci examples/...