-
Notifications
You must be signed in to change notification settings - Fork 2
37 lines (35 loc) · 926 Bytes
/
tests.yml
File metadata and controls
37 lines (35 loc) · 926 Bytes
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
name: Run tests
on:
push:
branches:
- master
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "pip"
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
override: true
toolchain: stable
- uses: pnpm/action-setup@v2.2.2
with:
version: latest
- name: Setup other envs
run: |
sudo apt update
sudo apt install -y cmake gcc-10 openjdk-11-jre maven
python -m pip install -r requirements_test.txt
python -m pip install -r Python/requirements.txt
cd JavaScript && pnpm install
- name: Run tests
working-directory: tests
run: python ./run_tests.py --verbose