Skip to content

Feat: support OOD dual label #633

Feat: support OOD dual label

Feat: support OOD dual label #633

Workflow file for this run

name: CI/CD Unit Test
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: pip
- name: Install dependencies
run: |
pip install .[test,deepmd]
- name: Run tests
run: |
python -m pytest tests -vv --cov --cov-branch --cov-report=xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: deepmodeling/LAMBench