prepare release v0.0.2 #14
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: Lint and Build | |
on: push | |
jobs: | |
lint_and_build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository ๐๏ธ | |
uses: actions/checkout@v4 | |
- name: Install Python 3.10 ๐ | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Set up runner ๐ฆ | |
run: pip install -r requirements.txt -r requirements-dev.txt | |
- name: "Black: Code Formatting ๐ฎ๐ฝโโ๏ธ" | |
run: black --check medconb_client.py | |
- name: "Pylama: Linting ๐งน" | |
run: ruff check medconb_client.py | |
- name: "Mypy: Type checking ๐ฎ๐ฝโโ๏ธ" | |
run: mypy medconb_client.py | |
- name: Build ๐๏ธ | |
run: python -m build |