Skip to content

feat!: rewrite the library as app-store-web-scraper #8

feat!: rewrite the library as app-store-web-scraper

feat!: rewrite the library as app-store-web-scraper #8

Workflow file for this run

name: CI
on:
push:
branches: [main]
paths-ignore:
- '**.md'
pull_request:
branches: [main]
paths-ignore:
- '**.md'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Hatch
uses: pypa/hatch@install
- name: Set up Python environment
run: hatch env create
- name: Check code and formatting
run: hatch fmt --check
- name: Run unit tests
run: hatch test