Skip to content

Merge pull request #148 from okp4/dependabot/pip/pytest-8.1.1 #346

Merge pull request #148 from okp4/dependabot/pip/pytest-8.1.1

Merge pull request #148 from okp4/dependabot/pip/pytest-8.1.1 #346

Workflow file for this run

name: Build
on:
workflow_call:
push:
branches: [ main ]
pull_request:
branches: [ main ]
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
jobs:
build-python:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install Python Poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.3.1
- name: Install project dependencies
run: |
poetry install
- name: Build project
run: |
poetry build
build-docker:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Make docker image
run: |
docker build .