Skip to content

Merge pull request #50 from ral-facilities/dependabot/pip/uvicorn-0.23.2 #137

Merge pull request #50 from ral-facilities/dependabot/pip/uvicorn-0.23.2

Merge pull request #50 from ral-facilities/dependabot/pip/uvicorn-0.23.2 #137

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
- develop
permissions:
contents: read
jobs:
linting:
name: Linting
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: Set up Python
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
with:
python-version: "3.10"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[code-analysis]
- name: Run pylint
run: pylint inventory_management_system_api test
unit-tests:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: Set up Python
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
with:
python-version: "3.10"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[test]
- name: Create environment file
run: cp inventory_management_system_api/.env.example inventory_management_system_api/.env
- name: Create logging configuration file
run: cp inventory_management_system_api/logging.example.ini inventory_management_system_api/logging.ini
- name: Run unit tests
run: pytest test/unit/ --cov
e2e-tests:
needs: [unit-tests]
name: End-to-End Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: Start MongoDB
uses: supercharge/mongodb-github-action@b0a1493307c4e9b82ed61f3858d606c5ff190c64 #v1.10.0
with:
mongodb-version: "6.0"
mongodb-username: root
mongodb-password: example
mongodb-db: test-ims
- name: Set up Python
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
with:
python-version: "3.10"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[test]
- name: Create environment file
run: cp inventory_management_system_api/.env.example inventory_management_system_api/.env
- name: Create logging configuration file
run: cp inventory_management_system_api/logging.example.ini inventory_management_system_api/logging.ini
- name: Run e2e tests
run: DATABASE__NAME="test-ims" pytest test/e2e/ --cov