Skip to content

Merge pull request #153 from okp4/dependabot/github_actions/wagoid/co… #355

Merge pull request #153 from okp4/dependabot/github_actions/wagoid/co…

Merge pull request #153 from okp4/dependabot/github_actions/wagoid/co… #355

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 .