Skip to content

Commit

Permalink
Add CI test against development versions (#445)
Browse files Browse the repository at this point in the history
* Add CI test against development versions

* Run only on push to main

* Update setup-uv

---------

Co-authored-by: ElliottKasoar <45317199+ElliottKasoar@users.noreply.github.com>
  • Loading branch information
k-harris27 and ElliottKasoar authored Feb 24, 2025
1 parent b4f4146 commit 55e0ea1
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/ci-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: ci-dev

on:
push:
branches: [main]

jobs:
test-dev-versions:
continue-on-error: true
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
python-version: ["3.12"]

steps:
- uses: actions/checkout@v4

- name: Install uv
uses: astral-sh/setup-uv@v5
with:
version: "latest"
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: uv sync --all-extras

# Full reinstall in case the version number is the same as the last release
- name: Uninstall release versions
run: uv pip uninstall ase mace-torch

- name: Install dev versions
run: |
uv pip install \
https://gitlab.com/ase/ase.git \
https://github.com/ACEsuit/mace.git
- name: Run test suite
env:
# show timings of tests
PYTEST_ADDOPTS: "--durations=0"
run: uv run pytest .

0 comments on commit 55e0ea1

Please sign in to comment.