Skip to content

fix(api): support head, 304 etag, and python3 makefile #6

fix(api): support head, 304 etag, and python3 makefile

fix(api): support head, 304 etag, and python3 makefile #6

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -r requirements-dev.txt
- name: Lint
run: ruff check .
- name: Type check
run: mypy app
- name: Test
run: pytest -q
- name: Build Docker image
run: docker build -t sistem-wilayah-indonesia-api .