Skip to content

Commit

Permalink
added staging ci check (#9)
Browse files Browse the repository at this point in the history
1. added staging github ci check 
2. added readme status icons
  • Loading branch information
codecakes authored Aug 4, 2024
1 parent b7c825c commit 441a235
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/stage_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Staged CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.12'

- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip install poetry
poetry install --no-root --with=dev
- name: Run Pre-commit
run: |
poetry run pre-commit run --all-files
- name: Run tests
run: |
poetry run pytest
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,28 @@
[![Deploy to Render](https://render.com/images/deploy-to-render-button.svg)](https://render.com/deploy?repo=https://github.com/Xcov19/project-healthcare)
[<img src="https://substackcdn.com/image/fetch/w_96,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fb16a2fa6-d7dd-4fce-8c1d-2c3c0c63b8a6_435x435.png" alt="Newsletter" height="32" />](https://xcov19.dev)

_Repo metadata_

[![Staged CI](https://github.com/Xcov19/project-healthcare/workflows/Staged%20CI/badge.svg)](https://github.com/Xcov19/project-healthcare/actions?query=workflow:"Staged+CI")
[![GitHub tag](https://img.shields.io/github/tag/Xcov19/project-healthcare?include_prereleases=&sort=semver&color=blue)](https://github.com/Xcov19/project-healthcare/releases/)
[![License](https://img.shields.io/badge/License-LGPL--2.1-blue)](#license)
[![issues - project-healthcare](https://img.shields.io/github/issues/Xcov19/project-healthcare)](https://github.com/Xcov19/project-healthcare/issues)
[![GitHub pull requests](https://img.shields.io/github/issues-pr/Xcov19/project-healthcare)](https://github.com/Xcov19/project-healthcare/pulls)


## Documentation

<div align="center">

[![view - Documentation](https://img.shields.io/badge/view-Documentation-blue?style=for-the-badge)](/docs/ "Go to project documentation")

</div>


## License

Released under [LGPL-2.1](/LICENSE) by [@Xcov19](https://github.com/Xcov19).

# Project Healthcare (xcov19)

Project Healthcare, from hereon called the brokering service, is a set of upstream OpenAPI specification to extend any patient facing user interface looking to integrate to location-aware consultation and diagnostics facilities near them by:
Expand Down
Empty file added xcov19/__init__.py
Empty file.

0 comments on commit 441a235

Please sign in to comment.