-
Notifications
You must be signed in to change notification settings - Fork 34
57 lines (54 loc) · 1.64 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
name: Tests & Lints
on:
push:
branches: [main]
pull_request:
# Check all PR
jobs:
# Javascript linting
npm-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# we need the full history to be able to get the chemiscope version with
# git describe during the build
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: '22.x'
cache: 'npm'
- name: configure access to git repositories in package-lock.json
run: git config --global url."https://github.com/".insteadOf ssh://[email protected]
- name: install npm dependencies
run: npm ci
- run: npm run build
- run: npm test
# Python unit tests
python-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.12']
steps:
- uses: actions/checkout@v3
# we need the full history to be able to get the chemiscope version with
# git describe during the build
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: actions/setup-node@v3
with:
node-version: '22.x'
cache: 'npm'
- name: configure access to git repositories in package-lock.json
run: git config --global url."https://github.com/".insteadOf ssh://[email protected]
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox==4.14.0
- name: Run Python tests
run: tox