-
-
Notifications
You must be signed in to change notification settings - Fork 6
59 lines (49 loc) · 1.42 KB
/
test.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
name: Test
on: [push, pull_request, workflow_dispatch]
env:
FORCE_COLOR: 1
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["pypy3.9", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
cache: pip
cache-dependency-path: |
.github/workflows/test.yml
requirements.txt
- name: Set up node
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
cache-dependency-path: ".github/workflows/test.yml"
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install -U wheel
python -m pip install -Ur requirements.txt --prefer-binary
npm install svgexport
- name: Unit tests
run: |
python test_utils.py
- name: Test run
run: |
./build.sh
- name: History charts
run: |
git config remote.origin.fetch +refs/heads/*:refs/remotes/origin/*
git fetch origin
python history_get.py -n 10
python history_plot.py