[ENH] Display version + link to github #272
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
branches: [ master, develop ] | |
pull_request: | |
branches: [ master ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Set up python | |
id: setup-python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.7 | |
- uses: actions/checkout@v2 | |
- name: Load cached venv | |
id: cached-poetry-dependencies | |
uses: actions/cache@v3 | |
with: | |
path: .venv | |
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install poetry | |
sudo apt-get install libblas3 liblapack3 liblapack-dev libblas-dev gfortran libatlas-base-dev | |
poetry config --local virtualenvs.in-project true | |
poetry install --no-interaction | |
- name: check quality | |
run: | | |
source .venv/bin/activate | |
prospector | |
- name: test app | |
env: | |
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }} | |
run: | | |
echo Test | |
source .venv/bin/activate | |
coverage run -m unittest || exit 11 | |
coverage combine | |
coverage report | |
if [ -n "$CODACY_PROJECT_TOKEN" ]; then | |
coverage xml -o cobertura.xml | |
bash <(curl -Ls https://coverage.codacy.com/get.sh) report -r cobertura.xml | |
else | |
echo no CODACY_PROJECT_TOKEN | |
fi |