General clean-up, especially around docs, in preparation for v1.0 #1633
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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://git@github.com | |
- 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@v4 | |
# 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@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: actions/setup-node@v4 | |
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://git@github.com | |
- name: Install dependencies | |
run: python3 -m pip install tox | |
- name: Run Python tests | |
run: tox |