We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcde68a commit 0854a85Copy full SHA for 0854a85
1 file changed
.github/workflows/tests-dev.yml
@@ -27,3 +27,31 @@ jobs:
27
28
- name: Run tests against MDAnalysis dev version
29
run: tox -e tests-dev
30
+
31
+ tests-release:
32
+ runs-on: ubuntu-latest
33
+ strategy:
34
+ matrix:
35
+ python-version: ["3.11", "3.14"]
36
37
+ steps:
38
+ - uses: actions/checkout@v6
39
+ with:
40
+ fetch-depth: 0
41
42
+ - name: Check out latest release tag
43
+ run: git checkout $(git describe --tags --abbrev=0)
44
45
+ - name: Set up Python ${{ matrix.python-version }}
46
+ uses: actions/setup-python@v6
47
48
+ python-version: ${{ matrix.python-version }}
49
50
+ - name: Install released scatterkit and test dependencies
51
+ run: |
52
+ python -m pip install scatterkit
53
+ python -m pip install -r tests/requirements.txt
54
+ python -m pip list
55
56
+ - name: Run tests against released versions
57
+ run: pytest
0 commit comments