Skip to content

Revert "Created group behaviors" #46

Revert "Created group behaviors"

Revert "Created group behaviors" #46

Workflow file for this run

on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
# check-out repo
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Checkout submodules
run: git submodule update --init --recursive
# install poetry
- name: Install poetry
run: pipx install poetry
# set-up python with cache
- name: Setup Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'poetry'
- name: Update pip
run: poetry run pip install -U pip
- name: Install requirements
run: poetry install --no-root
- name: Compile ladder zip
run: poetry run python scripts/create_ladder_zip.py
- uses: montudor/action-zip@v1
with:
args: unzip -qq bot.zip -d out
- uses: actions/upload-artifact@v4
with:
name: ladder-zip
path: out