🐛 修复无法获取使用拉格朗日接收的消息中图片的地址 #348
Workflow file for this run
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: Unittest | |
on: | |
push: | |
branches: | |
- nonebot2-beta1 | |
pull_request: | |
jobs: | |
test: | |
name: Test | |
strategy: | |
matrix: | |
version: ["3.8", "3.9", "3.10"] | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
env: | |
OS: ${{ matrix.os }} | |
PYTHON_VERSION: ${{ matrix.python-version }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install poetry | |
run: pipx install poetry | |
shell: bash | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.version }} | |
architecture: "x64" | |
cache: "poetry" | |
- name: Install dependencies | |
run: poetry install --with test --without dev | |
shell: bash | |
- name: Run Pytest | |
run: | | |
cd tests | |
poetry run pytest |