mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-23 07:57:37 +08:00
23 lines
439 B
YAML
23 lines
439 B
YAML
name: LiteyukiBot test
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Python 3.10 Env
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.10
|
|
- name: Install dependencies for LiteyukiBot
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -r requirements.txt
|
|
- name: Run tests
|
|
run: |
|
|
python main.py |