Skip to content

handle dupli cits

handle dupli cits #240

Workflow file for this run

#!/usr/bin/python
# -*- coding: utf-8 -*-
# Copyright 2022 Arcangelo Massari <arcangelo.massari@unibo.it>
#
# Permission to use, copy, modify, and/or distribute this software for any purpose
# with or without fee is hereby granted, provided that the above copyright notice
# and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED 'AS IS' AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
# FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT,
# OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
# ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
# SOFTWARE.
name: Run tests
on:
push:
branches: [ test.opencitations.net ]
pull_request:
branches: [ test.opencitations.net ]
jobs:
CheckCoverage:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3.0.2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip3 install ramose
pip3 install psutil
pip3 install coverage
pip3 install coverage-badge
- name: Check the coverage
run: |
coverage run --rcfile=test/coverage/.coveragerc
- name: Generate the badge
run: |
mv .coverage test/coverage/
cd test/coverage/
rm coverage.svg
coverage-badge -o coverage.svg
- uses: actions/upload-artifact@v3.1.0
with:
name: coverage-artifact
path: test/coverage/
PublishBadge:
runs-on: ubuntu-latest
needs: CheckCoverage
steps:
- uses: actions/checkout@v3.0.2
- uses: actions/download-artifact@v3.0.0
with:
name: coverage-artifact
path: test/coverage/
- name: Publish the badge on the GitHub repo
run: |
git pull
git add test/coverage/.coverage
git add test/coverage/coverage.svg
git config --global user.name 'arcangelo7'
git config --global user.email 'arcangelomas@gmail.com'
git commit -m 'Coverage updated'
git push