-
Notifications
You must be signed in to change notification settings - Fork 6
63 lines (51 loc) · 1.63 KB
/
tests.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: jlumbroso/[email protected]
- uses: actions/[email protected]
with:
python-version: '3.13'
- name: Install poetry
run: |
python -m pip install poetry==2.0.1
- name: Configure poetry
run: |
python -m poetry config virtualenvs.in-project true
- name: Cache the virtualenv
uses: actions/[email protected]
with:
path: ./.venv
key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
run: |
python -m poetry install
- name: Setup Perl
uses: shogo82148/[email protected]
with:
perl-version: "5.40.1"
- name: Setup Java
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: '8'
- name: Setup benchmarks
run: ./setup.sh
- name: Install Ubuntu packages
run: |
sudo apt-get install -y dos2unix \
git \
build-essential \
subversion \
perl \
curl \
unzip \
cpanminus \
make \
gosu \
locales
- name: Build and run tests
run: CI=true && python -m poetry run python -m pytest -sxv tests/