Skip to content

deleted file: uma_benchmark_results.md #2

deleted file: uma_benchmark_results.md

deleted file: uma_benchmark_results.md #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-and-test:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v4
- name: Set up conda
uses: conda-incubator/setup-miniconda@v3
with:
miniforge-version: latest
environment-file: environment.yml
activate-environment: deltahf
use-mamba: true
cache-environment: true
- name: Lint
run: ruff check deltahf/ tests/
- name: Unit tests
run: pytest -m "not integration" -v --tb=short