Skip to content

updated

updated #85

Workflow file for this run

name: build
on:
push:
branches:
- main
- productionizing
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v2
- name: setup python
uses: actions/setup-python@v4
with:
python-version: '3.11.6'
- name: install python packages
run: |
python -m pip install --upgrade pip
pip install -r requirements/requirements.txt