-
Notifications
You must be signed in to change notification settings - Fork 7
47 lines (42 loc) · 1.04 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: unit-tests
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
- development
pull_request:
branches:
- main
- development
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Set up Python
run: uv python install 3.11
- name: linting checks
run: |
uv pip install flake8 flake8-docstrings isort
uv run sh hooks/pre-commit
- name: Install the project
run: uv sync --all-extras --dev
- name: unit tests
run: |
uv run pytest --cov=amlrt-project
- name: pytorch-end2end-single
run: |
uv run ./tests/end2end_pytorch/run_single.sh
- name: pytorch-end2end-orion
run: |
uv run ./tests/end2end_pytorch/run_orion.sh
- name: type checking
run: |
uv run pytype amlrt_project/
- name: doc-creation-test
run: |
uv run ./tests/test_docs/run.sh