Skip to content

chore(deps): update dependency fastapi to v0.115.0 #143

chore(deps): update dependency fastapi to v0.115.0

chore(deps): update dependency fastapi to v0.115.0 #143

Workflow file for this run

name: Lint & Build
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python 3
id: setup-python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Prepare
run: |
sudo apt install libapt-pkg-dev
pip install pipenv
- name: Install dependencies
run: pipenv install --dev
- name: Lint
run: pipenv run pylint app.py apt_info.py
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python 3
id: setup-python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Prepare
run: |
sudo apt install libapt-pkg-dev
pip install pipenv
- name: Install dependencies
run: pipenv install --dev
- name: Test
run: pipenv run pytest test_app.py
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: linux/amd64,linux/arm64
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
platforms: linux/amd64,linux/arm64
- name: Build
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64,linux/arm64
push: false