Skip to content

chaning spin_orbit options #3902

chaning spin_orbit options

chaning spin_orbit options #3902

Workflow file for this run

---
# Run basic tests for this app
name: continuous-integration
on: [push, pull_request]
# https://docs.github.com/en/actions/using-jobs/using-concurrency
concurrency:
# only cancel in-progress jobs or runs for the current workflow - matches against branch & tags
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test-package:
strategy:
matrix:
tag: [latest]
python-version: ['3.9', '3.10']
aiida-core-version: [2.3, 2.5]
fail-fast: false
runs-on: ubuntu-latest
timeout-minutes: 30
services:
rabbitmq:
image: rabbitmq:latest
ports:
- 5672:5672
steps:
- name: Check out app
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: |
**/setup.cfg
**/pyproject.toml
**/requirements*.txt
- name: Install package
run: pip install -e .[dev] aiida-core==${{ matrix.aiida-core-version }}
- name: Run pytest
run: pytest -v tests --cov
env:
TAG: ${{ matrix.tag }}
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
flags: python-${{ matrix.python-version }}