Read user-defined array properties from csv files with json.loads
(…
#209
This file contains hidden or 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: CI tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
env: | |
PYTEST_ADDOPTS: "--color=yes" | |
# Cancel running workflows when additional changes are pushed | |
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-using-a-fallback-value | |
concurrency: | |
group: ${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
tests: | |
name: Test the `optimade-maker` package | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Set up uv | |
uses: astral-sh/setup-uv@v5 | |
with: | |
version: "0.6.x" | |
enable-cache: true | |
- name: Install latest compatible versions of immediate dependencies | |
run: | | |
uv sync --locked --all-extras --dev | |
- name: Run linters | |
run: | | |
uv run pre-commit run --all-files --show-diff-on-failure | |
- name: Run tests | |
run: | | |
uv run pytest -vv --cov=./src/optimade_maker --cov-report=xml --cov-report=term ./tests | |
- name: Upload coverage | |
uses: codecov/codecov-action@v3 | |
with: | |
name: project | |
file: ./coverage.xml | |
flags: project |