Skip to content

Upgrade to be compatible with pyfirecreset v2.6.0 #147

Upgrade to be compatible with pyfirecreset v2.6.0

Upgrade to be compatible with pyfirecreset v2.6.0 #147

Workflow file for this run

name: CI
on:
push:
branches: [main]
tags:
- 'v*'
pull_request:
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
- uses: pre-commit/[email protected]
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]
os: ['ubuntu-latest']
services:
rabbitmq:
image: rabbitmq:3.8.14-management
ports:
- 5672:5672
- 15672:15672
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
- name: Test with pytest
run: pytest -vv --cov=aiida_firecrest --cov-report=xml --cov-report=term
# Codecov failing, we need to fix token: https://github.com/aiidateam/aiida-firecrest/issues/38
# - name: Upload coverage reports to Codecov
# uses: codecov/codecov-action@v3
# with:
# name: aiida-firecrest-pytests
# flags: pytests
# file: ./coverage.xml
# fail_ci_if_error: true
# token: ${{ secrets.CODECOV_TOKEN }}