Skip to content

build(deps): bump actions/add-to-project from 0.6.0 to 0.6.1 #349

build(deps): bump actions/add-to-project from 0.6.0 to 0.6.1

build(deps): bump actions/add-to-project from 0.6.0 to 0.6.1 #349

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 .