-
Notifications
You must be signed in to change notification settings - Fork 0
72 lines (60 loc) · 1.57 KB
/
ci.yml
File metadata and controls
72 lines (60 loc) · 1.57 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: CI
on:
push:
branches: [ main, feature/design-spec ]
# Do not run this aggregate workflow on PRs; PRs use pytest.yml matrix
pull_request:
branches: []
permissions:
contents: read
packages: read
actions: read
pull-requests: write
repository-projects: read
security-events: write
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Install system dependencies
run: |
sudo apt update
sudo apt install -y pkg-config libssl-dev
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Remove uv.lock
run: rm -f uv.lock
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
uv --version
- name: Install dependencies
run: |
make sync
make setup-all
- name: Configure test environment
env:
WANDB_MODE: "disabled"
PYTHONPATH: ${{ github.workspace }}
run: |
echo "Setting up test environment"
- name: Run tests
env:
PYTHONPATH: ${{ github.workspace }}
continue-on-error: true
run: |
make test
- name: Run linter tests
run: |
make test-linter-full