2024-06-18 23:32:58 +08:00
|
|
|
name: LiteyukiBot test
|
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
2024-06-18 23:36:04 +08:00
|
|
|
- name: Set up Python 3.11.0 Env
|
2024-06-18 23:32:58 +08:00
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
2024-06-18 23:36:04 +08:00
|
|
|
python-version: 3.11.0
|
2024-06-18 23:32:58 +08:00
|
|
|
- name: Install dependencies for LiteyukiBot
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -r requirements.txt
|
|
|
|
- name: Run tests
|
|
|
|
run: |
|
|
|
|
python main.py
|