Skip to content

chore: bump version to 2.0.0 and update description to include postal… #8

chore: bump version to 2.0.0 and update description to include postal…

chore: bump version to 2.0.0 and update description to include postal… #8

Workflow file for this run

name: ⚙️ Test
on:
push:
branches:
- "**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: ⬇️ Checkout repository
- uses: actions/setup-python@v5.1.1
name: 📦 Setup Python
with:
python-version: "3.9"
cache: "pip" # caching pip dependencies
- name: 🔍 Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: 🧪 Test
run: pytest