[pre-commit.ci] auto fixes from pre-commit.com hooks #142
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "run" | |
on: | |
push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: Install dependencies | |
run: | | |
python -m pip install -r requirements.txt | |
python -m pip install disnake-docs disnake-debug | |
python -m pip install pytest | |
- name: Run main file | |
run: python main.py | |
- name: Run tests | |
run: pytest tests/ |