Skip to content

Refactor, add & doc submitter_username feature, file size checking + … #181

Refactor, add & doc submitter_username feature, file size checking + …

Refactor, add & doc submitter_username feature, file size checking + … #181

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Get pip cache dir
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: Cache Dependencies for Python
uses: actions/cache@v4
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('src/requirements/**.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Setup dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: |
sudo apt install -y --upgrade sqlite3
pip install -r src/requirements/dev.txt
pip install .
- name: Run unit tests
run: |
cd src/tests/unit
python -m pytest
cd -
- name: Analysing the code with pylint
run: |
pylint -d W0221 $(git ls-files 'src/biodm/*.py') --exit-zero
# TODO: Debug
# - name: Build and cache integration test images
# uses: whoan/docker-build-with-cache-action@v5
# with:
# username: ${{ github.actor }}
# password: ${{ secrets.GITHUB_TOKEN }}
# registry: ghcr.io/bag-cnag
# compose_file: compose.test.yml
- name: Build integration tests containers
run: |
docker compose -f compose.test.yml build \
--build-arg PIP_CACHE_DIR=${{ steps.pip-cache.outputs.dir }} \
--build-arg PYTHON__V=${{ matrix.python-version }}
- name: Run integration tests - keycloak -
run: |
docker compose -f compose.test.yml run test-keycloak-run
docker compose -f compose.test.yml down --remove-orphans
- name: Run integration tests - s3 -
run: |
docker compose -f compose.test.yml run test-s3-run
docker compose -f compose.test.yml down --remove-orphans